使用 scons 编译带有 -std=c++11 标志的 c++ 文件

Using scons to compile c++ file with -std=c++11 flag

我正在尝试使用 scons 编译带有 -std=c=+11 选项的 c++ 文件。

文件:test.cc

#include <unordered_map>

int foo()
{ return 0; }

文件:SConstruct

env = Environment()
env.Append(CXXFLAGS = '-std=c++11')
#print env['CXXFLAGS']

src_files = Split('test.cc')
lib_name = 'test'

Library(lib_name, src_files)

我收到以下错误。调用 g++ 时,CXXFLAGS 似乎没有生效:

g++ -o test.o -c test.cc
In file included from /usr/include/c++/4.8.2/unordered_map:35:0,
                 from test.cc:2:
/usr/include/c++/4.8.2/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
 #error This file requires compiler and library support for the \
  ^
scons: *** [test.o] Error 1

我已经阅读了一些关于通过修改 "Construction Environment" 使用 -std=c++11 选项编译 c++ 文件的帖子,我觉得我已经完成了。有人可以帮忙吗

谢谢, 艾哈迈德

使用env.Library而不是Library来用你的构建环境构建库。

env = Environment()
env.Append(CXXFLAGS = '-std=c++11')

src_files = Split('test.cc')
lib_name = 'test'

env.Library(lib_name, src_files)