Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: build/standalone.gypi

Issue 1820583002: Use C++11 / gnu++11, not 0x (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comment; more in v8config.h Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .ycm_extra_conf.py ('k') | include/v8config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index 1dc66a3537eaf110b14f3a54d9c472047ff4d534..76e86279fc4702c29036a8822fcb8bcdab5d5949 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -701,7 +701,7 @@
'-Wnon-virtual-dtor',
'-fno-exceptions',
'-fno-rtti',
- '-std=gnu++0x',
+ '-std=gnu++11',
],
'ldflags': [ '-pthread', ],
'conditions': [
@@ -751,7 +751,7 @@
'-Wnon-virtual-dtor',
'-fno-exceptions',
'-fno-rtti',
- '-std=gnu++0x',
+ '-std=gnu++11',
],
'conditions': [
[ 'visibility=="hidden"', {
@@ -981,7 +981,7 @@
['clang==1', {
'xcode_settings': {
'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
- 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++0x', # -std=gnu++0x
+ 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', # -std=c++11
},
'conditions': [
['v8_target_arch=="x64" or v8_target_arch=="arm64" \
« no previous file with comments | « .ycm_extra_conf.py ('k') | include/v8config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698