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

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

Issue 9979025: [MIPS] Adding validator for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Update per initial code review. Nexes removed. Created 8 years, 8 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: src/trusted/service_runtime/build.scons
diff --git a/src/trusted/service_runtime/build.scons b/src/trusted/service_runtime/build.scons
old mode 100644
new mode 100755
index 9ffd3b27e52be67a55058775158498762314530f..fd45b8aaaf91806d76a471511eba860f8743d6f5
--- a/src/trusted/service_runtime/build.scons
+++ b/src/trusted/service_runtime/build.scons
@@ -227,6 +227,8 @@ if env.Bit('linux'):
]
if env.Bit('target_arm'):
ldr_inputs += ['linux/nacl_signal_arm.c']
+ elif env.Bit('target_mips32'):
+ ldr_inputs += ['linux/nacl_signal_mips.c']
Brad Chen 2012/04/13 00:50:52 This file is not in the repo, right? Is there a re
elif env.Bit('target_x86_32'):
ldr_inputs += ['linux/nacl_signal_32.c']
elif env.Bit('target_x86_64'):
@@ -292,6 +294,8 @@ if env.Bit('target_x86'):
VALIDATOR_LIB = env.NaClTargetArchSuffix('ncvalidate')
elif env.Bit('target_arm'):
VALIDATOR_LIB = 'ncvalidate_arm_v2'
+elif env.Bit('target_mips32'):
+ VALIDATOR_LIB = 'ncvalidate_mips'
Brad Chen 2012/04/13 00:50:52 Ditto; I'm wondering if this is premature.
else:
# Unknown architecture
raise AssertionError('Unknown architecture')

Powered by Google App Engine
This is Rietveld 408576698