ubuntu 11.04 上的 gold 链接器默认不搜索 /usr/local/lib

发布于 2024-12-04 23:09:01 字数 487 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各空 2024-12-11 23:09:01

还有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文