Hi,
As a bit of background: I used the scalapack_installer_1.0.2 to install lapack using Intel 9.1 and MKL 8.1 and using openmpi (1.2.6). Since I had some issues with how the installer interpreted the blaslib and lapacklib options, I used the following command:
./setup.py --prefix /usr/local/ur/netlib/scalapack --blaslib="-L/usr/local/intel/mkl/8.1/lib/em64t -lmkl_em64t -lguide -lpthread" --lapacklib="-L/usr/local/intel/mkl/8.1/lib/em64t -lmkl_lapack -lguide -lpthread -lmkl_em64t" --notesting
If I now link using the following libraries:
-L/usr/local/ur/netlib/scalapack/lib -lscalapack -L/usr/local/intel/mkl/8.1/lib/em64t -lmkl_lapack -lguide -lmkl_em64t -lpthread
I have (thankfully only one) undefined reference:
/usr/local/ur/netlib/scalapack/lib/libscalapack.a(pzlascl.o): In function `pzlascl_':
pzlascl.f:(.text+0x173): undefined reference to `disnan_'
pzlascl.f:(.text+0x1aa): undefined reference to `disnan_'
I was wondering what I need to do to get this reference resolved?
Thanks,
René