Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Runtime Error libmkl_p4.so

a_m_teale
Beginner
1,202 Views
Hi,
I have recently compiled a large program with the intel fortran compiler v8. The program links to libraries in the intelmkl package(v6.1). The program seems to compile fine but when I run it I receive an error of the type;
programpath/programbinary: error while loading shared libraries: libmkl_p4.so: cannot open shared object file: No such file or directory
From reading previous postings I suspect that this may be to do with my linux setup and LD_LIBRARY_PATH.However I am very new toLinux and don'treally know how to alter / add tothis. Any help wouldbe greatly appreciated.
Many Thanks
Andy
0 Kudos
2 Replies
cp_jain
Beginner
1,202 Views
Yes, your are right. You need to update (add mkl lib path to) your LD_LIBRARY_PATH env variable as -

export LD_LIBRARY_PATH=/opt/intel/mkl61/lib/32/:$LD_LIBRARY_PATH

MKL lib path could be different in your case.

use ldd "exec_file_name" to varify that this lib is in path now.

HTH,
cp
0 Kudos
a_m_teale
Beginner
1,202 Views
Many Thanks and a Happy New Year- Now Works.
0 Kudos
Reply