Re: [Lapackpp-devel] Error configuring with externally compiled Blas & Lapack
Status: Beta
Brought to you by:
cstim
From: Christian S. <sti...@tu...> - 2007-01-25 13:59:06
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, Sonia Singhal schrieb: > I am trying to compile lapackpp-2.5.0 on Suse Linux. > I am using Intel's MKL library containing Blas and Lapack libraries. > When I run configure giving the path to these libraries, it gives the > error of not finding functions in the blas/lapack libraries. > --------------------------------------------------------------------------------------------------------- >> ./configure --with-blas=~/pacakages/mkl/lib/32/libmkl_ia32.a --with-lapack=~/pacakages/mkl/lib/32/libmkl_lapack.a > . > . > checking for dummy main to link with Fortran libraries... none > checking for Fortran name-mangling scheme... lower case, underscore, > no extra underscore > checking for sgemm_ in ~/pacakages/mkl/lib/32/libmkl_ia32.a... no This is the important error in the configure result -- according to the "nm" output below, this check should have succeeded instead: >> nm ~/pacakages/mkl/lib/32/libmkl_ia32.a | grep sgemm_ > ... > _sgemm_fb.o: > 00000000 T sgemm_ Can you open the file "config.log" that was created during configure, and look for the exact (compiler/linker) error message on the failed test? To find this place, search for the string "checking for sgemm_" in that file. Maybe the compiler doesn't like the tilde ("~"), in which case you should specify a complete absolute path name instead. Regards, Christian -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iQCVAwUBRbi3mmXAi+BfhivFAQL5AwQAhD9+flxjEMyfZj3y42F248uDy94nVuD3 r8y+sKzhYRWizuIGvHFeaibqHoZlE1gMTnT8K9V50nwYllc8NhU028Zm+K3z1yGM JTtNMt6IKCOBwQveOKQH1Rktxy6f1LVOCxyvGcQ/dvuDHqRc12h9McDKNNNZLUjh bPlHY0+KVlk= =6x2V -----END PGP SIGNATURE----- |