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

Unified Diff: build/common.gypi

Issue 18014003: Add X32 port into V8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 5 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
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 15486)
+++ build/common.gypi (working copy)
@@ -390,7 +390,19 @@
},
},
'msvs_configuration_platform': 'x64',
- }], # v8_target_arch=="x64"
+ }], # v8_target_arch=="x32"
+ ['v8_target_arch=="x32"', {
+ 'defines': [
+ 'V8_TARGET_ARCH_X32',
+ ],
+ 'cflags': [
+ '-mx32',
+ '-Wno-long-long',
+ ],
+ 'ldflags': [
+ '-mx32',
+ ],
+ }], # v8_target_arch=="x32"
['v8_compress_startup_data=="bz2"', {
'defines': [
'COMPRESS_STARTUP_DATA_BZ2',

Powered by Google App Engine
This is Rietveld 408576698