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

Unified Diff: src/trusted/gdb_rsp/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/gdb_rsp/build.scons
===================================================================
--- src/trusted/gdb_rsp/build.scons (revision 8148)
+++ src/trusted/gdb_rsp/build.scons (working copy)
@@ -18,6 +18,8 @@
if env.Bit('target_arm'):
env.Append(CPPDEFINES=['GDB_RSP_ABI_ARM'])
+elif env.Bit('target_mips'):
+ env.Append(CPPDEFINES=['GDB_RSP_ABI_MIPS'])
elif env.Bit('target_x86'):
env.Append(CPPDEFINES=['GDB_RSP_ABI_X86'])
if env.Bit('target_x86_64'):

Powered by Google App Engine
This is Rietveld 408576698