GNU MakeFile 问题

发布于 2024-10-04 14:52:18 字数 175 浏览 0 评论 0原文

我使用GCC编译器。

编译程序时,通常需要链接大量的库文件(例如 .so 扩展名)才能使程序运行。

现在,对于我正在编写的 C 程序,我需要链接的所有库文件都位于一个文件夹内。

如果我希望将该文件夹中的所有库文件链接到我的程序/可执行文件,我应该在 GNU Makefile 中编写什么。

I use the GCC compiler.

When compiling a program one often needs to link in a huge number of library files like .so extension to get the program to work.

Now for the C program that I am writing all the library files I need to link are inside a folder.

What should I write in my GNU Makefile if I wish to link ALL the library files in that folder to my program/executable.

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

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

发布评论

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

评论(1

樱桃奶球 2024-10-11 14:52:18
target.exe: target.o
     gcc -o target.exe target.o libdir/*.so
target.exe: target.o
     gcc -o target.exe target.o libdir/*.so
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文