我想在 autotools 项目中使用-Wall
和-Werror
作为 gcc 的标志,但我不想将它们放在我的 configure.ac 中。
因此,我尝试使用,只是从我的一个宏调用./configure CFLAGS='-Wall -Werror'
中得到一个错误:AC_SEARCH_LIBS
AC_SEARCH_LIBS([pow], [m], , AC_MSG_ERROR([Could not find standard math library.]))
运行配置时产生的错误CFLAGS
添加:
configure: error: Could not find standard math library.
我在这里做错了什么?没有 CFLAGS 变量集,配置工作正常。