[DEBUG] mm file mission c++x11 configuration

This commit is contained in:
Edouard DUPIN 2013-11-28 00:54:40 +01:00
parent 051759ed89
commit 18b7c4a34a
2 changed files with 5 additions and 1 deletions

View File

@ -110,6 +110,9 @@ class module:
self.CompileFlags_CC([
"-Wno-int-to-pointer-cast"
]);
self.CompileFlags_XX([
"-Wno-c++11-narrowing"
])
# only for gcc :"-Wno-unused-but-set-variable"
###############################################################################

View File

@ -36,9 +36,10 @@ class Target:
self.global_flags_cc=['-D__TARGET_OS__'+self.name]
if self.name != "Windows":
self.global_flags_xx=['-std=c++11']
self.global_flags_mm=['-std=c++11']
else:
self.global_flags_xx=['-std=c++0X']
self.global_flags_mm=[]
self.global_flags_mm=[]
self.global_flags_m=[]
self.global_flags_ar=['rcs']
self.global_flags_ld=[]