ubuntu 11.04 上的 gold 链接器默认不搜索 /usr/local/lib
我正在尝试使用 gold 链接器来编译我的代码,但默认情况下它不会在 /usr/local/lib 中搜索库。我尝试在 /etc/ld.so.conf.d/ 中添加 /usr/local/lib 但仍然不起作用。就好像 gold 没有检查 /etc/ld.so.conf 的东西。我可以添加
-L/usr/local/lib
到我的 Makefile 中并且它可以工作,但是还有其他方法可以让 gold 在默认情况下搜索它吗?
谢谢
更新:
我发现黄金的创造者谈论这个问题 http:// /old.nabble.com/gold-library-search-path--td32057398.html。截至 2011 年 7 月,黄金似乎并不支持这一点。
I am trying to use the gold linker to compile my code, but it does not search for libraries in /usr/local/lib by default. I tried adding /usr/local/lib in /etc/ld.so.conf.d/ and it still does not work. It is as if gold is not checking the /etc/ld.so.conf stuff. I can add
-L/usr/local/lib
in my Makefile and it works, but is there an other way to make gold search it by default?
Thanks
UPDATE:
I found the creator of gold talking about the issue http://old.nabble.com/gold-library-search-path--td32057398.html. It seems gold just does not support it as of July 2011.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有 LDFLAGS 环境变量,但像 ld.so.conf 一样,它可能是 LD 特定的,而 gold 不尊重它们。
在这种情况下,只有阅读黄金文档才会有帮助。
There are also the LDFLAGS enviroment variable, but like ld.so.conf it might be LD specific with gold not respecting them.
In that case, only going through the gold documentation will help.