使用 GNU libtool 创建静态库和共享库?

发布于 2024-10-05 14:36:21 字数 145 浏览 7 评论 0原文

我正在为我的项目使用 GNU 自动工具(包括 automake!)。我想知道是否可以使用 libtool 创建静态库和共享库?或者声明是分开的吗?这会

LT_INIT(shared static)

起作用吗?

I am using the GNU autotools (including automake!) for my project. I would like to know if I could create a static and a shared library using libtool? Or would the declarations be separate? Would this:

LT_INIT(shared static)

work?

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

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

发布评论

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

评论(1

浸婚纱 2024-10-12 14:36:22

除了 LT_INIT 之外什么都不需要,它默认构建静态库和共享库。如果您愿意,您可以再次明确声明默认值(但它有点多余)

LT_INIT
AC_ENABLE_SHARED
AC_ENABLE_STATIC

编辑:手册说 LT_INIT([shared])LT_INIT([static]) (与 LT_INIT([shared static]) 组合也可以工作。此外,手册还对给出 LT_INIT 时的默认值有更精确的措辞:
这个宏打开共享库,如果它们是
可用,如果不可用,也启用静态库
与共享库冲突。

Nothing besides LT_INIT is needed, it defaults to building both static and shared libraries. If you like, you can again explicitly state the defaults (but it is sort of redundant)

LT_INIT
AC_ENABLE_SHARED
AC_ENABLE_STATIC

edit: manual says LT_INIT([shared]) and LT_INIT([static]) (combined to LT_INIT([shared static]) shall also work. Also manual's more precise wording on what's default when LT_INIT is given:
this macro turns on shared libraries if they are
available, and also enables static libraries if they don't
conflict with the shared libraries.

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