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

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

Issue 12256013: [MIPS] Fix missing definitions for MIPS arch in build and driver scripts (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Update per code review. Created 7 years, 10 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 | « pnacl/driver/pnacl-ld.py ('k') | no next file » | 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 4e276bf51152a4f252426327e05343ef8fc95070..cb3d26fb310f975ce3f07aa196c13c79138b450c 100755
--- a/pnacl/driver/pnacl-nativeld.py
+++ b/pnacl/driver/pnacl-nativeld.py
@@ -154,12 +154,14 @@ LDPatterns = [
( '(--unresolved-symbols=.*)', PassThrough),
( '(--dynamic-linker=.*)', PassThrough),
- ( '-melf_nacl', "env.set('ARCH', 'X8632')"),
- ( ('-m','elf_nacl'), "env.set('ARCH', 'X8632')"),
- ( '-melf64_nacl', "env.set('ARCH', 'X8664')"),
- ( ('-m','elf64_nacl'), "env.set('ARCH', 'X8664')"),
- ( '-marmelf_nacl', "env.set('ARCH', 'ARM')"),
- ( ('-m','armelf_nacl'), "env.set('ARCH', 'ARM')"),
+ ( '-melf_nacl', "env.set('ARCH', 'X8632')"),
+ ( ('-m','elf_nacl'), "env.set('ARCH', 'X8632')"),
+ ( '-melf64_nacl', "env.set('ARCH', 'X8664')"),
+ ( ('-m','elf64_nacl'), "env.set('ARCH', 'X8664')"),
+ ( '-marmelf_nacl', "env.set('ARCH', 'ARM')"),
+ ( ('-m','armelf_nacl'), "env.set('ARCH', 'ARM')"),
+ ( '-mmipselelf_nacl', "env.set('ARCH', 'MIPS32')"),
+ ( ('-m','mipselelf_nacl'), "env.set('ARCH', 'MIPS32')"),
# Inputs and options that need to be kept in order
( '(--no-as-needed)', "env.append('INPUTS', $0)"),
« no previous file with comments | « pnacl/driver/pnacl-ld.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698