Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs relating to EM_JS and side modules #20444

Merged
merged 2 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -112,6 +112,7 @@ See docs/process.md for more on how version tagging works.
with the new `__i53abi` decorator. When this is set to true, i64 values are
automatically converted to JS numbers (i53) at the JS boundary. Parameters
outside of the i53 will show up as NaN in the JS code (#19711)
- EM_JS functions are now supported in side modules (#19705)

3.1.42 - 06/22/23
-----------------
Expand Down Expand Up @@ -357,6 +358,7 @@ See docs/process.md for more on how version tagging works.
occupy linear memory at all. The default for `DEFAULT_PTHREAD_STACK_SIZE` was
also reduced from 2MB to 64KB to match.
- Improved error messages for writing custom JS libraries. (#18266)
- EM_ASM code is now supported in side modules (#18228)

3.1.26 - 11/17/22
-----------------
Expand Down
5 changes: 2 additions & 3 deletions site/source/docs/compiling/Dynamic-Linking.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,8 @@ Limitations
``file_packager.py``) to make Emscripten compile them on startup
`[doc] <https://emscripten.org/docs/porting/files/packaging_files.html#preloading-files>`__
`[discuss] <https://groups.google.com/forum/#!topic/emscripten-discuss/cE3hUV3fDSw>`__.
- ``EM_ASM`` code defined within side modules depends on ``eval`` support are
is therefore incompatible with ``-sDYNAMIC_EXECUTION=0``.
- ``EM_JS`` functions defined in side modules are not yet supported.
- ``EM_ASM`` and ``EM_JS`` code defined within side modules depends on ``eval``
support are is therefore incompatible with ``-sDYNAMIC_EXECUTION=0``.
sbc100 marked this conversation as resolved.
Show resolved Hide resolved


Pthreads support
Expand Down