File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
site/source/docs/compiling Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,8 @@ fix in future releses. Current limitations include:
119119 global does not work. This is because symbols are exported directly using
120120 ES6 module syntax rathar than using the ``Module `` global.
121121
122+ * The ``wasmExports `` internal global does not exist.
123+
122124* `ccall `/`cwrap ` are not supported (depends on the ``Module `` global).
123125
124126* :ref: `abort_on_wasm_exceptions ` is not supported (requires wrapping wasm
@@ -128,6 +130,9 @@ fix in future releses. Current limitations include:
128130
129131* :ref: `asyncify ` is not supported (depends on :ref: `dyncalls `)
130132
133+ * :ref: `asyncify_lazy_load_code ` is not supported (depends on ``wasmExports ``
134+ global)
135+
131136* The output of file_packager is not compatible so :ref: `emcc-preload-file ` and
132137 :ref: `emcc-embed-file ` do not work.
133138
Original file line number Diff line number Diff line change @@ -8316,6 +8316,7 @@ def test_pthread_join_and_asyncify(self):
83168316 '-pthread' , '-sPROXY_TO_PTHREAD' ])
83178317
83188318 @no_asan ('asyncify stack operations confuse asan' )
8319+ @no_modularize_instance ('ASYNCIFY_LAZY_LOAD_CODE is not compatible with MODULARIZE=instance' )
83198320 @no_wasm2js ('TODO: lazy loading in wasm2js' )
83208321 @parameterized ({
83218322 '' : (False ,),
Original file line number Diff line number Diff line change @@ -826,6 +826,8 @@ def limit_incoming_module_api():
826826 exit_with_error ('MODULARIZE=instance is not compatible with -sASYNCIFY=1' )
827827 if settings .DYNCALLS :
828828 exit_with_error ('MODULARIZE=instance is not compatible with -sDYNCALLS' )
829+ if settings .ASYNCIFY_LAZY_LOAD_CODE :
830+ exit_with_error ('MODULARIZE=instance is not compatible with -sASYNCIFY_LAZY_LOAD_CODE' )
829831 if options .use_preload_plugins or len (options .preload_files ):
830832 exit_with_error ('MODULARIZE=instance is not compatible with --embed-file/--preload-file' )
831833 if 'INCOMING_MODULE_JS_API' in user_settings :
You can’t perform that action at this time.
0 commit comments