Change -std=gnu++11 to -stc=c++11 and don't pass flag to MSVC
This commit is contained in:
parent
56a44ca03e
commit
26a1621678
2 changed files with 4 additions and 2 deletions
|
|
@ -34,7 +34,8 @@ env_etc.Append(CPPPATH=[thirdparty_dir])
|
|||
env_etc.add_source_files(env.modules_sources, "*.cpp")
|
||||
|
||||
# upstream uses c++11
|
||||
env_etc.Append(CCFLAGS="-std=gnu++11")
|
||||
if (not env_etc.msvc):
|
||||
env_etc.Append(CCFLAGS="-std=c++11")
|
||||
# -ffast-math seems to be incompatible with ec2comp on recent versions of
|
||||
# GCC and Clang
|
||||
if '-ffast-math' in env_etc['CCFLAGS']:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue