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
Support different node flags for different versions of node. (emscripten-core#18070)
This is mostly about what flags to pass to node during testing, but
also applies to `CMAKE_CROSSCOMPILING_EMULATOR` and to the #! used
in autoconf tests.
err('requested a shared WebAssembly.Memory but the returned buffer is not a SharedArrayBuffer, indicating that while the browser has SharedArrayBuffer it does not have WebAssembly threads support - you may need to set a flag');
45
45
if(ENVIRONMENT_IS_NODE){
46
-
err('(on node you may need: --experimental-wasm-threads --experimental-wasm-bulk-memory and also use a recent version)');
46
+
err('(on node you may need: --experimental-wasm-threads --experimental-wasm-bulk-memory and/or recent version)');
0 commit comments