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

Unified Diff: build/standalone.gypi

Issue 1018543003: PPC: Force PPC linux to use gcc and gcc 4.8.3 changes for AIX (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 | « 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 8a8128d1deebedfdba63a378dcabbd8cc2bbccbe..a3c95223aa4596ec3308e6f8b8e2696fa8dfaf64 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -86,7 +86,6 @@
'werror%': '-Werror',
'use_goma%': '<(use_goma)',
'gomadir%': '<(gomadir)',
- 'host_clang%': '1',
# .gyp files or targets should set v8_code to 1 if they build V8 specific
# code, as opposed to external code. This variable is used to control such
@@ -152,6 +151,11 @@
}, {
'clang%': 0,
}],
+ ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', {
+ 'host_clang%': '1',
+ }, {
+ 'host_clang%': '0',
+ }],
],
# Default ARM variable settings.
'arm_version%': 'default',
@@ -176,10 +180,11 @@
'default_configuration': 'Debug',
'configurations': {
'DebugBaseCommon': {
- 'cflags': [ '-g', '-O0' ],
'conditions': [
- [ 'OS=="aix"', {
- 'cflags': [ '-gxcoff' ],
+ ['OS=="aix"', {
+ 'cflags': [ '-g', '-Og', '-gxcoff' ],
+ }, {
+ 'cflags': [ '-g', '-O0' ],
}],
],
},
« 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