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

Unified Diff: pydir/szbuild.py

Issue 2085303002: Subzero, MIPS32: Cross-testing enabled for MIPS32 (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix typo for srlv opcode Created 4 years, 3 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 | « pydir/run-pnacl-sz.py ('k') | pydir/targets.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pydir/szbuild.py
diff --git a/pydir/szbuild.py b/pydir/szbuild.py
index 3e1722bbfe5dba4a68fc66c09aabe1ee9b022fb1..3b8a1f5ab2a737087540e5d4322c4e4e02e0d3c0 100755
--- a/pydir/szbuild.py
+++ b/pydir/szbuild.py
@@ -186,6 +186,7 @@ def LinkNative(objs, exe, target, verbose=True):
nacl_root = FindBaseNaCl()
linker = {
'arm32': '/usr/bin/arm-linux-gnueabihf-g++',
+ 'mips32': '/usr/bin/mipsel-linux-gnu-g++',
'x8632': ('{root}/../third_party/llvm-build/Release+Asserts/bin/clang'
).format(root=nacl_root),
'x8664': ('{root}/../third_party/llvm-build/Release+Asserts/bin/clang'
@@ -297,7 +298,7 @@ def ProcessPexe(args, pexe, exe):
llcbin = '{base}/pnacl-llc'.format(base=path_addition)
gold = '{base}/le32-nacl-ld.gold'.format(base=path_addition)
objcopy = '{base}/{objcopy}'.format(base=path_addition,
- objcopy=GetObjcopyCmd())
+ objcopy=GetObjcopyCmd(args.target))
opt_level = args.optlevel
opt_level_map = { 'm1':'0', '-1':'0', '0':'0', '1':'1', '2':'2' }
hybrid = args.include or args.exclude
« no previous file with comments | « pydir/run-pnacl-sz.py ('k') | pydir/targets.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698