Chromium Code Reviews| Index: pydir/run-llvm2ice.py |
| diff --git a/pydir/run-llvm2ice.py b/pydir/run-llvm2ice.py |
| index 583d7f8eb72d26c32041d3f52942a36462f6bc5a..54849f0eeb973aedad7a8b0060f0675765de073b 100755 |
| --- a/pydir/run-llvm2ice.py |
| +++ b/pydir/run-llvm2ice.py |
| @@ -74,7 +74,9 @@ def main(): |
| cmd += ['--bitcode-format=pnacl'] |
| if not args.no_local_syms: |
| cmd += ['--allow-local-symbol-tables'] |
| - if not (args.llvm or args.llvm_source): |
| + if args.llvm or args.llvm_source: |
| + cmd += ['--build-on-read=0'] |
| + else: |
| cmd += ['--build-on-read'] |
|
Jim Stichnoth
2014/10/28 20:45:35
Maybe --build-on-read=1 for consistency/clarity?
Karl
2014/10/28 21:43:51
Done.
|
| if args.args: |
| cmd += args.args |