autoconf:AC_PROG_CC 检查对象和可执行文件后缀,但如何获取它?
我是 autoconf 的新手,发现宏 AC_PROG_CC
的调用会检查可执行文件和目标文件的后缀。现在我想使用这些检查的结果并在我的 Makefile.in 中替换它们,但是 autoconf 文档中没有足够的文档或提及如何使用它。
我还遇到了一个普遍问题:哪个宏为我提供了哪些变量,以及在哪里可以了解参考?
感谢您的任何帮助。
I'm a newbie to autoconf, and found out that a call of the macro AC_PROG_CC
checks for the suffixes of executables and object files. Now I want to use the results of these checks and replace them in my Makefile.in
, but there is no adequate documentation or mentioning in the autoconf docs on how to use this.
I'm also having the general problem: Which macro gives me which variables, and where is a reference to get know about?
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要查找的变量是
@EXEEXT@
和@OBJEXT@
。此链接您可以从 Autoconf 手册中找到所有输出变量的索引。
不幸的是,没有简单的表格来说明哪些宏是由哪些宏定义的,您只需阅读说明即可。
The variables you are looking for are
@EXEEXT@
and@OBJEXT@
.This link takes you to the index of all the output variables from the Autoconf manual.
Unfortunately there's no easy table of which ones are defined by which macros, you just have to read the descriptions.