autoconf/automake 的外部库配置宏
是否有一个 autoconf 宏来配置通用库,它可以:
- 生成 --with 配置选项
- 设置库并包含路径
- 设置编译器/预处理器和链接器标志
- 检查库的存在并包含文件
- 设置配置宏
现在我正在使用 ARG_WITH、CHECK_LIB 执行所有操作等等。这些步骤是通用的,最终是复制/粘贴并进行细微的更改。我搜索宏档案并没有找到通用的解决方案。
谢谢
Is there a autoconf macro to configure generic library that can:
- generates --with configure option
- setup library and include path
- setup compiler/preprocessor and linker flags
- check existence of library and include files
- setup configuration macros
Right now I am doing everything using ARG_WITH, CHECK_LIB, etc. the steps are generic and end up being copy/paste with minor changes. My search the macro archive and did not find generic solution.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是完整的解决方案,但您可能会发现 Autoconf 宏存档中的
AX_PATH_GENERIC
很有用:http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob;f =m4/ax_path_generic.m4It's not the complete solution, but you might find
AX_PATH_GENERIC
from the Autoconf Macro Archive useful: http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob;f=m4/ax_path_generic.m4