Liunx 運行用 Intel MKL 庫文件的程序出錯 “error while loading shared libraries libmkl_intel.so” 解決辦法

2012-06-05 18:19 本站整理 瀏覽(9)
編譯例子
gcc -o foo foo.c -I/opt/intel/mkl/10.1.0.015/include  -L/opt/intel/mkl/10.1.0.015/lib/32 -lmkl_intel ... <other MKL libs>

錯誤提示
./foo: error while loading shared libraries libmkl_intel.so: cannot open shared object file No such file or directory

解決辦法:在Liunx 環境變量中加入Intel MKL 庫文件路徑
Intel 官網詳解:
Before using the Intel® MKL shared libraries, update the system variable LD_LIBRARY_PATH to include the libraries location. For example, if the Intel MKL libraries are in the /opt/intel/mkl/10.1.0.015/lib/32 directory then the following command line can be
used (assuming a bash shell):
export LD_LIBRARY_PATH=/opt/intel/mkl/lib/ia32:$LD_LIBRARY_PATH