如何使用 autoconf 创建 .so 库,而不是 .la 库?

发布于 2024-11-01 10:21:30 字数 290 浏览 2 评论 0原文

我想用 autoconf 创建一个共享库。但是,我希望共享库具有“.so”扩展名,而不是以“lib”开头。基本上,我想制作一个可以使用 dlopen 加载的插件。有没有简单的方法可以做到这一点?

当我尝试使用 autoconf 创建 .so 文件时,出现此错误:

plugins/Makefile.am:3: scan_bulk.la' is not a standard libtool library name plugins/Makefile.am:3:您的意思是libscan_bulk.la'吗?

I want to make a shared library with autoconf. However, I want the shared library to have a ".so" extension and not to begin with "lib". Basically, I want to make a plug-in that will get loaded with dlopen. Is there an easy way to do this?

When I try to create the .so file with autoconf, I get this error:

plugins/Makefile.am:3: scan_bulk.la' is not a standard libtool library name
plugins/Makefile.am:3: did you mean
libscan_bulk.la'?

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

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

发布评论

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

评论(1

橙味迷妹 2024-11-08 10:21:30

使用 -module 标志。它是这样的:

pkglib_LTLIBRARIES = scan_bulk.la
scan_bulk_la_LDFLAGS = -module -avoid-version -shared

模块标志向 Autotools 表明这应该是一个插件。

Use the -module flag. It goes something like this:

pkglib_LTLIBRARIES = scan_bulk.la
scan_bulk_la_LDFLAGS = -module -avoid-version -shared

The module flag indicates to the Autotools that this is supposed to be a plugin.

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