传递CXXFLAGS无效

时间:2016-10-25 22:02:39

标签: c++ c++11 g++ gnu-make

我正在尝试在Ubuntu 16.04上使用make编译一些软件。但是,它失败并出现错误:

/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file 
requires compiler and library support for the ISO C++ 2011 standard. This 
support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.

快速网络搜索显示编译器选项可以通过

传递给make
export CXXFLAGS="-std=c++11"

make CXXFLAGS="-std=c++11"

这些选项都没有奏效。我还尝试删除build文件夹中的所有内容并从头开始。错误仍然存​​在。

如何将CXXFLAGS传递给make

0 个答案:

没有答案