在 Ubuntu 上暂时禁用 Gold Linker
我正在尝试 Gold Linker,看看它是否会改善我们应用程序的链接时间。确实如此,意义重大。有时,我需要使用 GNU Linker。我该怎么做呢?
我使用的是 Ubuntu 10.04,我从包管理器安装了 Gold Linker。
谢谢
I'm trying out the Gold Linker to see if it will improve link time of our application. And it does, significantly. Occasionally, I need to use the GNU Linker. How would I go about doing this?
I am using Ubuntu 10.04 and I installed the Gold Linker from the package manager.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/usr/bin/ld 只是指向实际链接器的符号链接。检查并确保系统上的 /usr/bin/ld 只是 ld.gold 的符号链接。如果是,那么您可以执行 ln -sf ld.bfd /usr/bin/ld
/usr/bin/ld is just a symlink to whichever your actual linker is. Check to make sure that /usr/bin/ld on your system is just a symlink to ld.gold. If it is, then you can just do ln -sf ld.bfd /usr/bin/ld