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

Unified Diff: build/common.gypi

Issue 143003013: Initial patch for a64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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 | « Makefile ('k') | build/standalone.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 09abe2978ed9ab7bf92814088e06e00540365253..a7475b155f7c90fb0dafccb9b9d61d843cf59606 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -308,6 +308,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',
@@ -493,7 +498,11 @@
}],
['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', {
'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
- '-Wnon-virtual-dtor', '-Woverloaded-virtual' ],
+ '-Wnon-virtual-dtor', '-Woverloaded-virtual',
+ # Hide some GCC 4.8 warnings:
+ # TODO(jbramley): Only enable these on GCC 4.8.
+ '-Wno-unused-local-typedefs',
+ '-Wno-maybe-uninitialized' ],
}],
['OS=="linux" and v8_enable_backtrace==1', {
# Support for backtrace_symbols.
@@ -537,6 +546,10 @@
'-fdata-sections',
'-ffunction-sections',
'-O3',
+ # Hide some GCC 4.8 warnings:
+ # 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 | « Makefile ('k') | build/standalone.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698