Gcc 和 ld 参数

发布于 2024-09-03 15:32:56 字数 60 浏览 1 评论 0原文

如何将选项 --enable-auto-import 从 gcc 传递给 ld?

how can I pass the option --enable-auto-import to ld from gcc?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

篱下浅笙歌 2024-09-10 15:32:56
gcc ... -Wl,--enable-auto-import ...
gcc ... -Wl,--enable-auto-import ...
南冥有猫 2024-09-10 15:32:56
  -Xlinker option
       Pass option as an option to the linker.  You can use this to supply system-specific
       linker options which GCC does not know how to recognize.
  -Xlinker option
       Pass option as an option to the linker.  You can use this to supply system-specific
       linker options which GCC does not know how to recognize.
寂寞清仓 2024-09-10 15:32:56

您可以使用 -Xlinker 选项将选项传递给链接器

$ gcc -Xlinker--enable-auto-import blah...

应该可以。

You use the -Xlinker option to pass options to the linker:

$ gcc -Xlinker--enable-auto-import blah...

should work.

愁杀 2024-09-10 15:32:56

警告:很少提及,但如果您有一个需要值的链接器选项,比如说

-current_version 1

……您需要执行以下操作:

-Wl,-current_version,1

……或……

-Xlinker -current_version -Xlinker 1

Caveat: It's rarely mentioned but if you have a linker option that requires a value, say ...

-current_version 1

... you need to do the following:

-Wl,-current_version,1

... or ...

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