[tech][转] 解决/usr/bin/ld: cannot find -lxxx 问题
Posted Dicor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[tech][转] 解决/usr/bin/ld: cannot find -lxxx 问题相关的知识,希望对你有一定的参考价值。
http://blog.csdn.net/dayeshisir/article/details/7539054
问题:
在linux环境编译应用程式或lib的source code时常常会出现如下的错误讯息:
- /usr/bin/ld: cannot find -lxxx
这些信息会随着编译不同类型的source
code 而有不同的结果出来如:
- /usr/bin/ld: cannot find -lc
- /usr/bin/ld: cannot find -lltdl
- /usr/bin/ld: cannot find -lXtst
其中xxx即表示函式库文件名称,如上例的:libc.so、libltdl.so、libXtst.so。
其命名规则是:lib+库名(即xxx)+.so。
会发生这样的原因有以下三种情形:
1
系统没有安装相对应的lib
2
相对应的lib版本不对
3
lib(.so档)的symbolic link 不正确,没有连结到正确的函式库文件(.so)
对于上述三种原因有一篇文章写的很棒可参考这一篇文章的第4点:
解决方法:
(1)先判断在/usr/lib
下的相对应的函式库文件(.so) 的symbolic link 是否正确
若不正确改成正确的连结目标即可解决问题。
(2)若不是symbolic
link 的问题引起,而是系统缺少相对应的lib安装lib即可解决。
(3)如何安装缺少的lib:
以上面三个错误讯息为例:
错误1缺少libc的LIB
错误2缺少libltdl的LIB
错误3缺少libXtst的LIB
以Ubuntu为例:
先搜寻相对应的LIB再进行安装的作业如:
apt-cache
search libc-dev
apt-cache
search libltdl-dev
apt-cache
search libXtst-dev
实例:
在进行输入法gcin的Source
Code的编译时出现以下的错误讯息:
/usr/bin/ld:
cannot find -lXtst
经检查后发现是:
lib(.so档)的symbolic
link 不正确
解决方法如下:
cd
/usr/lib
ln
-s libXtst.so.6 libXtst.so
如果在/usr/lib的目录下找不到libXtst.so
档,那么就表示系统没有安装libXtst的函式库。
解法如下:
sudo
yum install libxtst-devel
以上是关于[tech][转] 解决/usr/bin/ld: cannot find -lxxx 问题的主要内容,如果未能解决你的问题,请参考以下文章
报错-"/usr/bin/ld: cannot find -levent"的原因及解决办法?
完美解决:/usr/bin/ld: cannot find -lc collect2: error: ld returned 1 exit status问题
完美解决:/usr/bin/ld: cannot find -lc collect2: error: ld returned 1 exit status问题
完美解决:/usr/bin/ld: cannot find -lc collect2: error: ld returned 1 exit status问题