“gcc -lname” 和 “gcc -lname” 之间有什么区别?和“gcc libname.so ...”

发布于 2024-11-25 16:55:31 字数 97 浏览 0 评论 0原文

我觉得两者都有效,有什么区别吗?

gcc libname.so ... 是否静态链接 libname.so

It seems to me that both work, any difference?

Does gcc libname.so ... statically links libname.so or not?

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

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

发布评论

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

评论(3

彼岸花似海 2024-12-02 16:55:31

gcc -l 在其库搜索路径中查找静态和动态库(除非给出了-static)。 gcc ... libname.so 与当前目录中的 libname.so 动态链接。

gcc -l looks for both static and dynamic libraries (unless -static is given) in its library search path. gcc ... libname.so links dynamically with libname.so in the current directory.

她如夕阳 2024-12-02 16:55:31

gcc ... libname.sogcc -shared -L 相同。 -l名称

gcc ... libname.so is the same as gcc -shared -L. -lname

绳情 2024-12-02 16:55:31

您不能静态链接动态库。您只是使用两种不同的方法来为编译器驱动程序 (gcc) 提供库名称。 larsmans 是正确的,-l 选项将查找共享库和静态库(除非您在 gcc 调用上指定 -static )。

You can't statically link a dynamic library. You're just playing with two different ways to give the name of the library to the compiler driver program (gcc). larsmans is right that the -l option will look for both shared and then static libraries (unless you specify -static on the gcc call.)

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