AC_CHECK_LIB 可以用于非常规命名的库吗?

发布于 2024-08-30 18:50:52 字数 159 浏览 4 评论 0原文

AC_CHECK_LIB 接受要检查的共享库的基本名称作为参数。因此,对于名为“libxyz.so”的库,您可以将库“xyz”的基本名称指定为 AC_CHECK_LIB 的参数。如果我有一个名为 xyz.so 的库(注意:不是 libxyz.so),如何使用 autoconf 检查该库的可用性/可用性?

AC_CHECK_LIB accepts as an argument the base name of the shared library that you want to check for. So for a library named "libxyz.so" you would specify the base name of the library "xyz" as an argument to AC_CHECK_LIB. If I have a library named xyz.so (Note: Not libxyz.so), how do I check for the availability/usability of this library with autoconf ?

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

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

发布评论

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

评论(1

童话 2024-09-06 18:50:52

它不是可以通过 autoconf 完成的任务,autoconf 只是通过“-lxyz”将库名称传递给链接器。在你的情况下,链接器将找不到它。最好的解决方案是创建一个符号/硬链接 libxyz.so -> xyz.so。

Its not the task that can be done with means of autoconf, which simply passes the library name via "-lxyz" to the linker. And in your case the linker will not find it. The best solution is to create a symbolic/hardlink libxyz.so -> xyz.so.

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