如何使用自动工具编译带有 clang 和选项 -std=c++11 的项目
Posted
技术标签:
【中文标题】如何使用自动工具编译带有 clang 和选项 -std=c++11 的项目【英文标题】:How to compile project with clang and the option -std=c++11, using autotools 【发布时间】:2016-06-05 16:19:57 【问题描述】:我正在使用 C 和 C++ 代码开发软件。我最近在 c++11 标准中添加了一些代码。 在 configure.ac 我写道:
for f in '-std=c++11' '-std=c++11 -stdlib=libc++'
do
AX_CHECK_COMPILE_FLAG([$f], [CXXFLAGS="$CXXFLAGS $f" stdpass=true], [], [], [])
$stdpass-false && break
done
if ! "$stdpass-false"; then
AC_MSG_ERROR([Unable to turn on C++11 mode with this compiler])
fi
使用 gcc 我没问题,一切顺利,选项 -std=c++11 仅适用于 g++ 而不适用于 gcc。 如果我尝试配置:
CC=clang ./configure
我有以下错误:
checking whether C compiler accepts -std=c++11... no
checking whether C compiler accepts -std=c++11 -stdlib=libc++... no
configure: error: Unable to turn on C++11 mode with this compiler
这就像选项被应用在 C 编译器上,而不仅仅是在 clang++ 上(就像它使用 gcc 完成的一样)。
谁能帮我弄清楚我做错了什么。
【问题讨论】:
检查config.log
以查看实际的编译命令,以及产生的错误。
那个“检查 C 编译器是否...”消息让我觉得你忘记了to set the language。
另外,你应该使用CXX=clang++ ./configure
来设置C++编译器。
Joachim: 似乎把两者都放在:AC_LANG([C]), AC_LANG([C++]) 效果很好!!!你应该把它写在答案部分;)谢谢
已经有一个 autoconf 宏来检查 C++ 编译器中的 C++11 支持:AX_CXX_COMPILE_STDCXX_11。要在 configure.ac
中使用,请将其放在项目的 m4
目录中。
【参考方案1】:
好的,经过一番调查,我有了答案。 首先,在 configure.ac 中我必须设置我使用的语言:
AC_LANG([C])
AC_LANG([C++])
然后,已经有一个 autoconf 宏可以检查 C++ 编译器中对 C++11 的支持:AX_CXX_COMPILE_STDCXX_11。
所以,点击此链接:https://www.gnu.org/software/automake/manual/html_node/Local-Macros.html, 我必须创建一个 m4 文件夹并将宏定义放入其中。最好的方法是只下载更通用的ax_cxx_compile_stdcxx.m4 文件(而不是 ax_cxx_compile_stdcxx_11.m4)。 所以,我总是在 configure.ac 中写:
AC_CONFIG_MACRO_DIR([m4])
和
m4_include([m4/ax_cxx_compile_stdcxx.m4])
AX_CXX_COMPILE_STDCXX(11, noext, mandatory)
然后瞧。 一切都很好,至少在我测试过的机器上。
【讨论】:
以上是关于如何使用自动工具编译带有 clang 和选项 -std=c++11 的项目的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 clang++/libc++ 编译/链接 Boost?