2015-07-16 15:35:50
来 源
中存储网
Ubuntu
/home/bear/QtProgram/opencv001-build-desktop/opencv001: error while loading shared libraries: libopencv_highgui.so.2.3: cannot open shared object file: No such file or directory error while loading shared libraries: libXXX.so.1.2.3: cannot

/home/bear/QtProgram/opencv001-build-desktop/opencv001: error while loading shared libraries: libopencv_highgui.so.2.3: cannot open shared object file: No such file or directory

error while loading shared libraries: libXXX.so.1.2.3: cannot open shared object file

此时你可以locate libXXX.so.1.2.3 (一旦你的文件系统比以前有了变化,如安装了可能是需要的库的开发包,则需要 locate -u 一下)

然后一旦发现了libXXX.so.1.2.3的确存在,就把libXXX.so.1.2.3所在的目录加入到 /etc/ld.so.conf 中,或者在 /etc/ld.so.conf.d/ 下新建一文件,如 XXX.conf ,其内容是libXXX.so.1.2.3所在的目录。
一旦发现libXXX.so.1.2.3不存在,你可能没安装包含库的程序。一般搜索一下“XXX linux”就能找到相应的软件。

一旦提示是error while loading shared libraries: libXXX.so,但你的系统上有libXXX.so.5,你可以为libXXX.so.5
做一个软链接 ln -s libXXX.so.5 libXXX.so

如,我执行一个ACE开发包中的样例程序时,出现以下提示:
./logging_app: error while loading shared libraries: libACE.so.5.4.7: cannot open shared object file: No such file or directory

[root@www ld.so.conf.d]# locate libACE.so.5.4.7
/opt/ace/ace/libACE.so.5.4.7
/opt/ace/lib/libACE.so.5.4.7
[root@www ld.so.conf.d]# vi ace.conf

ace.conf中只有一行: /opt/ace/lib

然后再执行 ldconfig

OK,现在执行logging_app就没有错误了。

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。