Use C++11 stdlib

This commit is contained in:
Cheng Zhao 2015-01-14 17:40:24 -08:00
parent 834d28f528
commit 65d2540807

View file

@ -184,9 +184,7 @@
], ],
'target_defaults': { 'target_defaults': {
'cflags_cc': [ 'cflags_cc': [
# Use gnu++11 instead of c++11 here, see: '-std=c++11',
# https://code.google.com/p/chromium/issues/detail?id=224515
'-std=gnu++11',
], ],
'xcode_settings': { 'xcode_settings': {
'CC': '/usr/bin/clang', 'CC': '/usr/bin/clang',
@ -199,6 +197,8 @@
], ],
'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', # -std=c++11
}, },
}, },
}], # clang==1 }], # clang==1