makefile 中的库概念

发布于 2024-11-16 19:37:42 字数 108 浏览 3 评论 0原文

谁能帮我创建一个静态库? 我在 cygwin 下工作并使用 gcc。 我有 4 个目标文件,我想使用 make 创建一个静态库。如何配置我的 makefile 来执行此操作?

Can anyone help me create a static library?
I'm working under cygwin and using gcc.
I have 4 object files and I want to create a static library using make. How do I configure my makefile to do this?

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

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

发布评论

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

评论(1

创建如下规则:

libmylibrary.a: file1.o file2.o file3.o
    ar rcs $@ $^

请注意,第二行必须以制表符开始,而不是四个空格。 $@ 是 makefile 中的一个特殊常量,它被解析为目标的名称,而 $^ 被解析为依赖项列表。

Create a rule like this:

libmylibrary.a: file1.o file2.o file3.o
    ar rcs $@ $^

Note that you must start the second line with a Tab, not four spaces. $@ is a special constant in the makefile that is resolved to the name of the target, while $^ is resolved to the list of dependencies.

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