Linux cc 项目内目录中的库编译?
我的目录结构如下所示:
-xmllib
-libxml++-1.0.a
-main.cc
..并且我发出命令:
cc -lstdc++ -L./xmllib -llibxml++-1.0.a main.cc
但它告诉我它找不到库的二进制文件...即使我从根目录发出命令。
/usr/bin/ld: cannot find -llibxml++-1.0.a main.cc
collect2: ld returned 1 exit status
cc找不到二进制库有什么原因吗?
我使用的是 cc 版本 2.96(是的,它很旧)。
My directory structure looks like the following:
-xmllib
-libxml++-1.0.a
-main.cc
..and I issue the command:
cc -lstdc++ -L./xmllib -llibxml++-1.0.a main.cc
But then it tells me that it can't find the binary for the library...even though I issued the command from the root directory.
/usr/bin/ld: cannot find -llibxml++-1.0.a main.cc
collect2: ld returned 1 exit status
Is there any reason why cc can't find the binary library?
I'm using cc version 2.96 (yes, it's old).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其更改
为
:在 Posix 上,链接器的
-l
选项既不需要lib
前缀,也不需要.a
扩展名。Change this:
to this:
On Posix, the linker's
-l
option wants neither thelib
prefix or the.a
extension.