我已在我的计算机上安装了英特尔 IPP,我按照具体步骤进行操作,您可以在此处找到它:
http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-for-linux-how-to-install-intel-ipp-for- linux/
并将库链接到我的 IDE(Eclipse ),它可以完美编译,但是当我运行代码时,我收到此错误:
加载共享库时出错:libippcv.so.7.0:无法打开共享对象文件:否这样的文件或目录
知道可能是什么问题吗?
谢谢
I have installed Intel IPP on my machine, I followed specific steps where you can find it here :
http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-for-linux-how-to-install-intel-ipp-for-linux/
and linked the library to my IDE which is Eclipse , it compiles perfectly but when I run the code I got this error :
error while loading shared libraries: libippcv.so.7.0: cannot open shared object file: No such file or directory
any idea what might be the problem ?
Thank you
发布评论
评论(1)
您可能需要将 IPP 库路径添加到
ld.so.conf
中,然后运行 sudo ldconfig
。您可以通过运行以下命令来检查应用程序是否正确链接:希望有帮助!
You probably need to add the IPP library path to your
ld.so.conf
, and then runsudo ldconfig
. You can check that the application is properly linked by running the following:Hope that helps!