Chromium Code Reviews| 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]) |