Gcc 和 ld 参数
如何将选项 --enable-auto-import
从 gcc 传递给 ld?
how can I pass the option --enable-auto-import
to ld from gcc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将选项 --enable-auto-import
从 gcc 传递给 ld?
how can I pass the option --enable-auto-import
to ld from gcc?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以使用 -Xlinker 选项将选项传递给链接器:
应该可以。
You use the -Xlinker option to pass options to the linker:
should work.
警告:很少提及,但如果您有一个需要值的链接器选项,比如说
……您需要执行以下操作:
……或……
Caveat: It's rarely mentioned but if you have a linker option that requires a value, say ...
... you need to do the following:
... or ...