Fedora 8/EC2:ld 找不到库
我正在尝试让 gcc 处理 Fedora 8 的 Amazon EC2 映像,但遇到了库问题。 ld 未找到 -lz -lm -lbz2。
我尝试将 -L /lib 和 -L /usr/lib 添加到 gcc 的参数中,但它仍然不起作用。
我缺少什么?
I'm trying to get gcc to work on an Amazon EC2 image of Fedora 8, but I'm running into an issue with the libraries. ld is not finding -lz -lm -lbz2.
I've tried adding -L /lib and -L /usr/lib to the arguments for gcc, but it is still not working.
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
图书馆位于哪里?您是否通过
-L
选项在使用的路径中找到了库?Where are the libraries located? Did you locate the libs at the paths you are using with the
-L
option?