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

Unified Diff: pydir/crosstest.py

Issue 2519863002: Subzero, MIPS32: Changes for improving sandbox crosstest results (Closed)
Patch Set: Created 4 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
Index: pydir/crosstest.py
diff --git a/pydir/crosstest.py b/pydir/crosstest.py
index 075102cc1ec05455f2c394abce2302f4260dc918..6f8ed5716710cc05d7f13b78265ad3284ce5f8c7 100755
--- a/pydir/crosstest.py
+++ b/pydir/crosstest.py
@@ -158,7 +158,9 @@ def main():
bitcode] + arch_sz_flags[args.target])
if args.filetype != 'obj':
shellcmd(['{bin}/llvm-mc'.format(bin=bindir),
- '-triple=' + triple,
+ '-triple=' + ('mipsel-linux-gnu'
Jim Stichnoth 2016/11/21 20:08:39 Is it possible to use a nacl-specific tuple for MI
Stefan Maksimovic 2016/11/22 11:38:13 This change stems from the fact that when we run t
Jim Stichnoth 2016/11/22 18:25:30 Ah, OK, that's very interesting. Thanks for the e
+ if args.target == 'mips32' and args.sandbox
+ else triple),
'-filetype=obj',
'-o=' + obj_sz,
asm_sz])

Powered by Google App Engine
This is Rietveld 408576698