我正在尝试在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
?