Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ See docs/process.md for more on how version tagging works.

6.0.1 (in development)
----------------------
- Dynamic linking now explicitly requires asynchronous Wasm compilation. The
process of loading side modules at startup currently depends on this. (#27086)
- The `-sUSE_PTHREADS` and `-sMEMORY64` flags have been deprecated in favor of the
more standard `-pthread` and `-m64` (or `--target=wasm64`) flags. (#27025)
- Adds wasm-bindgen support. When `-sWASM_BINDGEN` is set, Emscripten will call
Expand Down
1 change: 1 addition & 0 deletions tools/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
('WASM_WORKERS', 'MAIN_MODULE', 'dynamic linking is not supported with -sWASM_WORKERS'),
('WASM2JS', 'MAIN_MODULE', 'wasm2js does not support dynamic linking'),
('WASM2JS', 'SIDE_MODULE', 'wasm2js does not support dynamic linking'),
('MAIN_MODULE', 'NO_WASM_ASYNC_COMPILATION', 'dynamic linking requires async wasm compilation'),
('MODULARIZE', 'NO_DECLARE_ASM_MODULE_EXPORTS', None),
('EVAL_CTORS', 'WASM2JS', None),
# In Asyncify exports can be called more than once, and this seems to not
Expand Down
Loading