2

我在 /usr/local/lib 中有这些共享库文件:

libopenbabel.so
libopenbabel.so.4
libopenbabel.so.4.0.2

libopenbabel.so 实际上是指向 libopenbabel.so.4 的链接,而 libopenbabel.so.4 实际上是指向 libopenbabel.so.4.0.2 的链接

当我用这个命令编译我的文件时:

g++ test.cpp -L/usr/local/lib -lopenbabel

然后尝试运行a.out,我得到这个错误:

./a.out: error while loading shared libraries: libopenbabel.so.4: cannot open shared object file: No such file or directory

暗示编译器正在查找 libopenbabel.so,但在跟随指向完全相同目录中的 libopenbabel.so.4 的链接时遇到错误。关于为什么会发生这种情况/我如何解决它的任何想法?

/usr/local/lib 中 ls -l 的输出:

total 33772
drwxr-xr-x  7 root root      4096 Mar 22 01:24 .
drwxr-xr-x 10 root root      4096 Aug 20  2013 ..
drwxr-xr-x  3 root root      4096 Mar 21 23:45 cmake
lrwxrwxrwx  1 root root        13 Mar 21 23:45 libinchi.so -> libinchi.so.0
lrwxrwxrwx  1 root root        17 Mar 21 23:45 libinchi.so.0 -> libinchi.so.0.4.1
-rw-r--r--  1 root root   3315565 Mar 22 01:04 libinchi.so.0.4.1
lrwxrwxrwx  1 root root        17 Mar 21 23:45 libopenbabel.so -> libopenbabel.so.4
lrwxrwxrwx  1 root root        21 Mar 21 23:45 libopenbabel.so.4 -> libopenbabel.so.4.0.2
-rw-r--r--  1 root root  31232420 Mar 22 01:04 libopenbabel.so.4.0.2
drwxr-xr-x  3 root root      4096 Mar 21 23:45 openbabel
drwxr-xr-x  2 root root      4096 Mar 22 01:24 pkgconfig
drwxrwsr-x  4 root staff     4096 Mar  3 12:57 python2.7
drwxrwsr-x  3 root staff     4096 Dec 22 18:25 python3.2
4

1 回答 1

3

将您的LD_LIBRARY_PATH环境变量设置为包含/usr/local/lib或添加/usr/local/lib/etc/ld.so.confldconfig以 root 身份运行。

此外,运行ldd a.out以检查动态链接是否在您的应用程序上运行良好。

读取ld-linux(8) , ldconfig(8) , ldd(1)

于 2014-03-22T07:21:09.920 回答