diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-23 10:55:02 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-23 11:39:35 -0800 |
commit | 441f3a1d04a698bc9e71cbd29be085ca2a80b3c4 (patch) | |
tree | 4f8868eca90c486bc2b9637bcc102f7048e5b6a0 | |
parent | 06952cee2becd83ab5a531b3e5649ad5f137d09f (diff) | |
download | binaryen-441f3a1d04a698bc9e71cbd29be085ca2a80b3c4.tar.gz binaryen-441f3a1d04a698bc9e71cbd29be085ca2a80b3c4.tar.bz2 binaryen-441f3a1d04a698bc9e71cbd29be085ca2a80b3c4.zip |
improve check.py
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -273,7 +273,7 @@ if has_emcc: command += ['-s', 'BINARYEN_METHOD="' + method + '"'] else: method = 'wasm-s-parser' # this is the default - print method, ' : ', command, ' => ', success + print method, ' : ', ' '.join(command), ' => ', success subprocess.check_call(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) def break_cashew(): asm = open('a.wasm.asm.js').read() |