diff --git a/wscript b/wscript index 650fc3f..23e50d5 100755 --- a/wscript +++ b/wscript @@ -32,7 +32,9 @@ def configure(conf): # release opt_flags = common_flags + ' -O3 -msse2 -ggdb3 -g' conf.env['CXXFLAGS'] = cxxflags + opt_flags.split(' ') - print conf.env['CXXFLAGS'] + print(conf.env['CXXFLAGS']) + + conf.env['CXXFLAGS'] = conf.env['CXXFLAGS'] + ['-std=c++11'] # Put it here so is compatible with the patch def build(bld): bld.recurse('src/')