最近写了个小程序,由一个库文件和可执行文件组成,可执行文件调用这个库文件,通过autoconf、automake、libtool一切都挺顺利的,测试完毕后通过make install按照,可是安装后发现,程序无法执行了,提示下面的错误:
./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory
从提示信息看,是可执行程序无法找到所需的库(动态库)文件,可是明明已经通过make install把库文件安装到/usr/local/lib了嘛,那应该就是路径的问题了,也就是说/usr/local/lib目录不在系统默认的库搜寻目录中,只要把目录加进去应该就可以了。
error while loading shared libraries错误解决办法
1、打开/etc/ld.so.conf 文件
2、加入(动态)库文件所在的目录,例如我这里是 /usr/local/lib 目录
3、shell中运行下面的指令更新下配置文件
/sbin/ldconfig –v
经过以上三个步骤后,error while loading shared libraries的问题就解决了!
转载请注明:Coding Ants » Linux中error while loading shared libraries错误解决办法
./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory
从提示信息看,是可执行程序无法找到所需的库(动态库)文件,可是明明已经通过make install把库文件安装到/usr/local/lib了嘛,那应该就是路径的问题了,也就是说/usr/local/lib目录不在系统默认的库搜寻目录中,只要把目录加进去应该就可以了。
error while loading shared libraries错误解决办法
1、打开/etc/ld.so.conf 文件
2、加入(动态)库文件所在的目录,例如我这里是 /usr/local/lib 目录
3、shell中运行下面的指令更新下配置文件
/sbin/ldconfig –v
经过以上三个步骤后,error while loading shared libraries的问题就解决了!
转载请注明:Coding Ants » Linux中error while loading shared libraries错误解决办法