Skip to content

Commit dc5407e

Browse files
authored
Don't warn about asm.js optimization issues with wasm2js (#9897)
(as wasm2js doesn't emit asm.js anyhow)
1 parent 2c80079 commit dc5407e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

emcc.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,9 @@ def check(input_file):
11341134
shared.Settings.USE_CLOSURE_COMPILER = options.use_closure_compiler
11351135
if not shared.check_closure_compiler():
11361136
exit_with_error('fatal: closure compiler is not configured correctly')
1137-
if options.use_closure_compiler == 2 and shared.Settings.ASM_JS == 1:
1137+
# when we emit asm.js, closure 2 would break that, so warn (note that
1138+
# with wasm2js in the wasm backend, we don't emit asm.js anyhow)
1139+
if options.use_closure_compiler == 2 and shared.Settings.ASM_JS == 1 and not shared.Settings.WASM_BACKEND:
11381140
shared.WarningManager.warn('ALMOST_ASM', 'not all asm.js optimizations are possible with --closure 2, disabling those - your code will be run more slowly')
11391141
shared.Settings.ASM_JS = 2
11401142

0 commit comments

Comments
 (0)