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

Unified Diff: build/toolchain.gypi

Issue 131383004: [not for landing] Diff between a64 and r19234 for no-a64 files. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 | « build/standalone.gypi ('k') | src/assembler.h » ('j') | src/bootstrapper.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain.gypi
diff --git a/build/toolchain.gypi b/build/toolchain.gypi
index badac265159210ae4e117b5a0b5383c2a5b49635..3ed8c6587fc44e3e5981eca0c917f8018ac22b0b 100644
--- a/build/toolchain.gypi
+++ b/build/toolchain.gypi
@@ -268,6 +268,11 @@
}], # _toolset=="target"
],
}], # v8_target_arch=="arm"
+ ['v8_target_arch=="a64"', {
+ 'defines': [
+ 'V8_TARGET_ARCH_A64',
+ ],
+ }],
['v8_target_arch=="ia32"', {
'defines': [
'V8_TARGET_ARCH_IA32',
@@ -407,7 +412,8 @@
}],
],
}],
- ['(OS=="linux") and (v8_target_arch=="x64")', {
+ ['(OS=="linux" or OS=="android") and \
+ (v8_target_arch=="x64" or v8_target_arch=="a64")', {
# Check whether the host compiler and target compiler support the
# '-m64' option and set it if so.
'target_conditions': [
@@ -513,7 +519,11 @@
OS=="qnx"', {
'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
'-Wnon-virtual-dtor', '-Woverloaded-virtual',
- '<(wno_array_bounds)' ],
+ '<(wno_array_bounds)',
+ # Hide some GCC 4.8 warnings:
ulan 2014/02/11 17:24:26 Remove before merge?
Rodolph Perfetta 2014/02/11 17:58:29 Yes remove. On 2014/02/11 17:24:26, ulan wrote:
+ # TODO(jbramley): Only enable these on GCC 4.8.
+ '-Wno-unused-local-typedefs',
+ '-Wno-maybe-uninitialized' ],
'conditions': [
['v8_optimized_debug==0', {
'cflags!': [
@@ -615,6 +625,10 @@
'-fdata-sections',
'-ffunction-sections',
'<(wno_array_bounds)',
+ # Hide some GCC 4.8 warnings:
ulan 2014/02/11 17:24:26 Remove before merge?
Rodolph Perfetta 2014/02/11 17:58:29 Yes remove On 2014/02/11 17:24:26, ulan wrote:
+ # TODO(jbramley): Only enable these on GCC 4.8.
+ '-Wno-unused-local-typedefs',
+ '-Wno-maybe-uninitialized',
],
'conditions': [
[ 'gcc_version==44 and clang==0', {
« no previous file with comments | « build/standalone.gypi ('k') | src/assembler.h » ('j') | src/bootstrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698