You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like you are perhaps trying to run a wasm module generated by emscripten with optimizations enabled.
emsripten will minify the names of the import/export between JS and Wasm, assuming that only the generated JS file will ever be loading the wasm file.
If you want to try to load the wasm module yourself without the generated JS then you would want build directly to wasm via -o .wasm (or using -sSTANDALONE_WASM). However, running and emscripten-generated wasm module in wabt is unlikely to work since emscripten-generated modules tend to have a other imports that wabt doesn't provide.
No description provided.
The text was updated successfully, but these errors were encountered: