error while loading shared libraries: libxx.so.2: cannot open shared object file: No such file

错误描述如下:

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

./a.out: error while loading shared libraries: /mnt/hgfs/libxx.so: cannot open shared object file: No such file or directory

查看依赖动态库编译路径命令:
readelf -dl libxx.so

解决步骤如下:
首先查看可执行文件的依赖库

$ ldd a.out

可明确的知道需要那些依赖库,以及哪些依赖库找不到
第一种方法:
找到缺少的动态库(由于编译和链接时候的使用到了这个动态库,所以很容易找得到),将其加到/lib,/usr/lib中的一个文件夹下,这几个文件夹是系统默认的搜索路径。将库文件放置在其中,运行时就可以搜索到了。
第二种方法:
设置临时增加链接动态库的路径;使用

 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:《你的库的绝对路径》
 比如我的libxx.so.2在/mnt/hgfs/目录下,那我使用的是:
 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/mnt/hgfs/

这种方法设置的是临时的,系统重启之后就没了。
第三种方法:
/etc/ld.so.cache中缓存了动态库路径,可以通过修改配置文件/etc/ld.so.conf中指定的动态库搜索路径,然后执行ldconfig命令来改变。
第四种方法:
编译链接时语句后面添加如下命令:
-Wl,-rpath, 用于指定程序运行时查找动态链接库的路径,多个路径是使用冒号隔开。这样就不用添加路径到 /etc/ld.so.conf 文 件中了,在需要多个so版本共存时很有用
-Wl,-rpath=《你的库的绝对路径》

$ g++ -Wl,-rpath,/mnt/hgfs/ -o  test  test.cpp 

编译完成后可以使用以下命令查看路径是否设置成功了

$ readelf -dl  libxx.so.2

0x000000000000000f (RPATH) Library rpath: [/mnt/hgfs/]

你可能感兴趣的:(linux,C语言)