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

Unified Diff: src/trusted/service_runtime/nacl.scons

Issue 10919162: [MIPS] Implementation of sel_ldr for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Rebase (Saturday morning). Created 8 years, 3 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/service_runtime/linux/nacl_signal_mips.c ('k') | src/trusted/service_runtime/nacl_config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/nacl.scons
diff --git a/src/trusted/service_runtime/nacl.scons b/src/trusted/service_runtime/nacl.scons
index 86b477ac231a038ed41ce85b94ee6b49952fc3ad..69ebffcd231e1947c181691e28ff1d327d9c63af 100644
--- a/src/trusted/service_runtime/nacl.scons
+++ b/src/trusted/service_runtime/nacl.scons
@@ -33,6 +33,8 @@ elif env.Bit('target_x86_64'):
nacl_text_pad_asm = 'arch/x86_64/nacl_text_pad_test.S'
elif env.Bit('target_arm'):
nacl_text_pad_asm = 'arch/arm/nacl_text_pad_test.S'
+elif env.Bit('target_mips32'):
+ nacl_text_pad_asm = 'arch/mips/nacl_text_pad_test.S'
else:
raise Exception('unknown architecture')
@@ -57,6 +59,8 @@ def NewAsmEnv(env, defines, rodata_address, rwdata_address):
link_cmd += ' -melf64_nacl'
elif env.Bit('target_arm'):
link_cmd += ' -marmelf_nacl'
+ elif env.Bit('target_mips32'):
+ link_cmd += ' -mmipselelf_nacl'
else:
raise Exception('unknown architecture')
« no previous file with comments | « src/trusted/service_runtime/linux/nacl_signal_mips.c ('k') | src/trusted/service_runtime/nacl_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698