We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e460806 commit 4b7991eCopy full SHA for 4b7991e
emcc.py
@@ -1909,7 +1909,7 @@ def do_minify(): # minifies the code. this is also when we do certain optimizati
1909
cmd += ['--no-opts']
1910
logging.debug('asm2wasm (asm.js => WebAssembly): ' + ' '.join(cmd))
1911
TimeLogger.update()
1912
- subprocess.check_call(cmd, stdout=open(wasm_text_target, 'w'))
+ subprocess.check_call(cmd, stdout=open(wasm_text_target, 'w'), shell=True)
1913
log_time('asm2wasm')
1914
if shared.Settings.BINARYEN_SCRIPTS:
1915
binaryen_scripts = os.path.join(shared.Settings.BINARYEN_ROOT, 'scripts')
0 commit comments