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

Unified Diff: pnacl/driver/pnacl-nativeld.py

Issue 11299012: PNaCl: Add more MIPS support to the toolchain (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix Created 8 years, 1 month 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 | « pnacl/driver/pnacl-ld.py ('k') | pnacl/driver/pnacl-translate.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pnacl/driver/pnacl-nativeld.py
diff --git a/pnacl/driver/pnacl-nativeld.py b/pnacl/driver/pnacl-nativeld.py
index 3f3db34799c00ffd48640ab62493c308125dbbe4..4e276bf51152a4f252426327e05343ef8fc95070 100755
--- a/pnacl/driver/pnacl-nativeld.py
+++ b/pnacl/driver/pnacl-nativeld.py
@@ -92,6 +92,7 @@ EXTRA_ENV = {
'LD_EMUL_ARM' : 'armelf_nacl',
'LD_EMUL_X8632' : 'elf_nacl',
'LD_EMUL_X8664' : 'elf64_nacl',
+ 'LD_EMUL_MIPS32' : 'elf32ltsmip_nacl',
'SEARCH_DIRS' : '${SEARCH_DIRS_USER} ${SEARCH_DIRS_BUILTIN}',
'SEARCH_DIRS_USER' : '',
@@ -101,6 +102,7 @@ EXTRA_ENV = {
'LIBS_ARM' : '${BASE_LIB_NATIVE}arm',
'LIBS_X8632' : '${BASE_LIB_NATIVE}x86-32',
'LIBS_X8664' : '${BASE_LIB_NATIVE}x86-64',
+ 'LIBS_MIPS32' : '${BASE_LIB_NATIVE}mips32',
# Note: this is only used in the unsandboxed case
'RUN_LD' : '${LD} ${LD_FLAGS} ${inputs} -o ${output}' +
« no previous file with comments | « pnacl/driver/pnacl-ld.py ('k') | pnacl/driver/pnacl-translate.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698