diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-06-29 13:28:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-29 13:28:03 -0700 |
commit | b7420eb7b37a589c7fc2fb3a59d91a36c19e6dcb (patch) | |
tree | 265c27c20aa857d71daa450510613e16264ea88e /check.py | |
parent | 04fa143e85bc870c80c50aa57cdbce833df0aa2d (diff) | |
parent | b3cd0621ff58d6a6e02c77ab29caa6efec097988 (diff) | |
download | binaryen-b7420eb7b37a589c7fc2fb3a59d91a36c19e6dcb.tar.gz binaryen-b7420eb7b37a589c7fc2fb3a59d91a36c19e6dcb.tar.bz2 binaryen-b7420eb7b37a589c7fc2fb3a59d91a36c19e6dcb.zip |
Merge pull request #611 from WebAssembly/updates
Updates
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -784,7 +784,7 @@ if has_emcc: extra = json.loads(open(emcc).read()) if os.path.exists('a.normal.js'): os.unlink('a.normal.js') for opts in [[], ['-O1'], ['-O2'], ['-O3'], ['-Oz']]: - for method in ['interpret-asm2wasm', 'interpret-s-expr', 'asmjs', 'interpret-binary']: + for method in ['interpret-asm2wasm', 'interpret-s-expr', 'interpret-binary']: command = ['emcc', '-o', 'a.wasm.js', '-s', 'BINARYEN=1', os.path.join('test', c)] + opts + extra command += ['-s', 'BINARYEN_METHOD="' + method + '"'] print '....' + ' '.join(command) |