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

Unified Diff: build/standalone.gypi

Issue 1154833002: [test] Fix no-exceptions cc flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | no next file » | 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 cf89f74d3c429913080bf2f1681268c4b93fd4e4..8bafda91d13e1c0be964602ac7e480b3ce051e7e 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -338,7 +338,6 @@
'-fPIC',
],
'cflags!': [
- '-fno-exceptions',
'-fomit-frame-pointer',
],
'ldflags': [
@@ -387,12 +386,16 @@
'-Wno-unused-parameter',
'-Wno-long-long',
'-pthread',
- '-fno-exceptions',
'-pedantic',
# Don't warn about the "struct foo f = {0};" initialization pattern.
'-Wno-missing-field-initializers',
],
- 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-std=gnu++0x' ],
+ 'cflags_cc': [
+ '-Wnon-virtual-dtor',
+ '-fno-exceptions',
+ '-fno-rtti',
+ '-std=gnu++0x',
+ ],
'ldflags': [ '-pthread', ],
'conditions': [
[ 'clang==1 and (v8_target_arch=="x64" or v8_target_arch=="arm64")', {
@@ -418,11 +421,15 @@
'-Wall',
'<(werror)',
'-Wno-unused-parameter',
- '-fno-exceptions',
# Don't warn about the "struct foo f = {0};" initialization pattern.
'-Wno-missing-field-initializers',
],
- 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-std=gnu++0x' ],
+ 'cflags_cc': [
+ '-Wnon-virtual-dtor',
+ '-fno-exceptions',
+ '-fno-rtti',
+ '-std=gnu++0x',
+ ],
'conditions': [
[ 'visibility=="hidden"', {
'cflags': [ '-fvisibility=hidden' ],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698