码迷,mamicode.com
首页 > 其他好文 > 详细

error while loading shared libraries: lib******: cannot open shared object file: No such file or directory

时间:2014-08-14 20:23:39      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   文件   ar   size   ad   ef   

程序编译成功后,运行时错误:

error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory

 

解决方法:

像libevent这种开源库,编译安装后,一般在/usr/local/lib目录下,可以通过下列命令查找:

#whereis libevent-2.0.so.5

libevent-2.0.so: /usr/local/lib/libevent-2.0.so.5

如果是自己编写的库,whereis是找不到的,当然自己也是知道该库在哪个地方的。

 

找到该库后,做一个软连接或者直接将该文件拷贝至相应lib库。

ln -s /usr/lib/libevent-2.0.so.5 /usr/lib64/libevent-2.0.so.5 

或者

cp /usr/local/lib/libevent-2.0.so.5 /usr/lib

error while loading shared libraries: lib******: cannot open shared object file: No such file or directory,布布扣,bubuko.com

error while loading shared libraries: lib******: cannot open shared object file: No such file or directory

标签:style   color   os   文件   ar   size   ad   ef   

原文地址:http://www.cnblogs.com/1024incn/p/3913171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!