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 78e2fcd commit 62dfd0fCopy full SHA for 62dfd0f
emcc.py
@@ -1697,7 +1697,7 @@ def save_intermediate(name=None, suffix='js'):
1697
wasm_js_glue = wasm_js_glue.replace('{{{ wasmJSMethod }}}', 'null')
1698
wasm_js_glue = wasm_js_glue.replace('{{{ WASM_BACKEND }}}', str(shared.Settings.WASM_BACKEND)) # if wasm backend, wasm contains memory segments
1699
wasm_js_glue += '\nintegrateWasmJS(Module);\n' # add a call
1700
- post_module += wasm_js_glue # we can set up the glue once we have the module
+ post_module += str(wasm_js_glue) # we can set up the glue once we have the module
1701
1702
# Apply pre and postjs files
1703
if pre_js or post_module or post_js:
0 commit comments