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

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: Minor update to the patch set 1 Created 8 years, 9 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
===================================================================
--- src/trusted/service_runtime/build.scons (revision 8148)
+++ src/trusted/service_runtime/build.scons (working copy)
@@ -227,6 +227,8 @@
]
if env.Bit('target_arm'):
ldr_inputs += ['linux/nacl_signal_arm.c']
+ elif env.Bit('target_mips'):
+ ldr_inputs += ['linux/nacl_signal_mips.c']
elif env.Bit('target_x86_32'):
ldr_inputs += ['linux/nacl_signal_32.c']
elif env.Bit('target_x86_64'):
@@ -292,6 +294,8 @@
VALIDATOR_LIB = env.NaClTargetArchSuffix('ncvalidate')
elif env.Bit('target_arm'):
VALIDATOR_LIB = 'ncvalidate_arm_v2'
+elif env.Bit('target_mips'):
+ VALIDATOR_LIB= 'ncvalidate_mips'
Mark Seaborn 2012/04/04 21:04:22 Put spaces around '='
else:
# Unknown architecture
raise AssertionError('Unknown architecture')

Powered by Google App Engine
This is Rietveld 408576698