使用LD链接中间文件

发布于 2024-08-01 17:52:31 字数 87 浏览 4 评论 0原文

如果我有 ao、bo 和 co,我如何使 ld 将它们链接到 do,然后链接到我的主目标文件? 我想要发生的就是将输入文件中的所有符号组合成一个大的输出文件。

If I have a.o, b.o, and c.o, how do I make ld link them into d.o, which is then linked into my main object file? All that I want to have happen is that all the symbols in the input files get combined into one big output file.

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

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

发布评论

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

评论(2

苍白女子 2024-08-08 17:52:31

找到了。 -r 选项增量链接文件,因此它们可以用作 ld 的输入。

Found it. The -r option links files incrementally, so they can be used as input to ld.

清风无影 2024-08-08 17:52:31

.o 文件的串联称为库。 你创建一个
使用 ar 库实用程序:

ar rvs mylib.a a.o b.o c.o

然后您可以链接到该库:

cc main.c mylib.a

A concatenation of .o files is called a library. You create one
with the ar library utility:

ar rvs mylib.a a.o b.o c.o

You can then link against the library:

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