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

Unified Diff: src/trusted/service_runtime/linux/nacl_bootstrap.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Upload again. Created 7 years, 2 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 | « src/trusted/platform_qualify/platform_qualify.gyp ('k') | src/trusted/service_runtime/service_runtime.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/linux/nacl_bootstrap.gyp
diff --git a/src/trusted/service_runtime/linux/nacl_bootstrap.gyp b/src/trusted/service_runtime/linux/nacl_bootstrap.gyp
index 784e8fff4cfedd565f0029a40555855103eb0c3a..a5d40bb0e648d812a72e884ec99108f1d38696b4 100644
--- a/src/trusted/service_runtime/linux/nacl_bootstrap.gyp
+++ b/src/trusted/service_runtime/linux/nacl_bootstrap.gyp
@@ -25,6 +25,12 @@
'nacl_reserve_top': '0x40002000',
}
}],
+ ['target_arch=="mipsel"', {
+ 'variables': {
+ # 1G address space, plus 32K guard area above.
+ 'nacl_reserve_top': '0x40008000',
+ }
+ }],
],
'targets': [
{
@@ -155,6 +161,11 @@
'linker_emulation': 'armelf_linux_eabi',
}
}],
+ ['target_arch=="mipsel"', {
+ 'variables': {
+ 'linker_emulation': 'elf32ltsmip',
+ },
+ }],
],
'action': ['python', 'ld_bfd.py',
# ld_bfd.py needs to know the target compiler used for the
« no previous file with comments | « src/trusted/platform_qualify/platform_qualify.gyp ('k') | src/trusted/service_runtime/service_runtime.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698