libtool 如何决定是否构建共享库?

发布于 2024-08-10 05:30:53 字数 38 浏览 5 评论 0原文

libtool 如何决定是否构建共享库?

陈兹

How does libtool decide to build a shared library or not?

Chenz

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

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

发布评论

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

评论(2

初见 2024-08-17 05:30:53

如果您使用 Automake 和 Autoconf,那么 Libtool 会默认构建共享和静态(如果您的平台支持它们)。要仅构建一种,请使用 --disable-static--disable-shared 调用 configure

If you use Automake and Autoconf, then Libtool builds both shared and static by default if they are supported on your platform. To build only one kind, call configure with --disable-static or --disable-shared.

谁与争疯 2024-08-17 05:30:53

来自 http://www.manpagez.com/man/1/libtool/

Libtool 可以动态创建
链接的共享库,与
-动态,或静态链接(存档)库,带有
-静态

From http://www.manpagez.com/man/1/libtool/

Libtool can create either dynamically
linked shared libraries, with
-dynamic, or statically linked (archive) libraries, with
-static.

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