使用 GNU libtool 创建静态库和共享库?
我正在为我的项目使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了
LT_INIT
之外什么都不需要,它默认构建静态库和共享库。如果您愿意,您可以再次明确声明默认值(但它有点多余)编辑:手册说
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)edit: manual says
LT_INIT([shared])
andLT_INIT([static])
(combined toLT_INIT([shared static])
shall also work. Also manual's more precise wording on what's default whenLT_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.