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

Unified Diff: build/common.gypi

Issue 10310058: Repair the build for Android on IA in a x64 host platform (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 8 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/common.gypi
===================================================================
--- build/common.gypi (revision 11520)
+++ build/common.gypi (working copy)
@@ -168,6 +168,19 @@
'defines': [
'V8_TARGET_ARCH_IA32',
],
+ 'conditions': [
+ ['host_arch=="x64" and OS=="android"', {
+ 'target_conditions': [
+ ['_toolset=="host"', {
+ 'cflags': ['-m32'],
+ 'ldflags': ['-m32'],
+ }],
+ ],
+ 'defines': [
+ 'V8_HOST_ARCH_IA32',
+ ],
+ }],
+ ],
}],
['v8_target_arch=="mips"', {
'defines': [
« 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