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:
119
119
global does not work. This is because symbols are exported directly using
120
120
ES6 module syntax rathar than using the ``Module `` global.
121
121
122
+ * The ``wasmExports `` internal global does not exist.
123
+
122
124
* `ccall `/`cwrap ` are not supported (depends on the ``Module `` global).
123
125
124
126
* :ref: `abort_on_wasm_exceptions ` is not supported (requires wrapping wasm
@@ -128,6 +130,9 @@ fix in future releses. Current limitations include:
128
130
129
131
* :ref: `asyncify ` is not supported (depends on :ref: `dyncalls `)
130
132
133
+ * :ref: `asyncify_lazy_load_code ` is not supported (depends on ``wasmExports ``
134
+ global)
135
+
131
136
* The output of file_packager is not compatible so :ref: `emcc-preload-file ` and
132
137
:ref: `emcc-embed-file ` do not work.
133
138
Original file line number Diff line number Diff line change @@ -8316,6 +8316,7 @@ def test_pthread_join_and_asyncify(self):
8316
8316
'-pthread' , '-sPROXY_TO_PTHREAD' ])
8317
8317
8318
8318
@no_asan ('asyncify stack operations confuse asan' )
8319
+ @no_modularize_instance ('ASYNCIFY_LAZY_LOAD_CODE is not compatible with MODULARIZE=instance' )
8319
8320
@no_wasm2js ('TODO: lazy loading in wasm2js' )
8320
8321
@parameterized ({
8321
8322
'' : (False ,),
Original file line number Diff line number Diff line change @@ -826,6 +826,8 @@ def limit_incoming_module_api():
826
826
exit_with_error ('MODULARIZE=instance is not compatible with -sASYNCIFY=1' )
827
827
if settings .DYNCALLS :
828
828
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' )
829
831
if options .use_preload_plugins or len (options .preload_files ):
830
832
exit_with_error ('MODULARIZE=instance is not compatible with --embed-file/--preload-file' )
831
833
if 'INCOMING_MODULE_JS_API' in user_settings :
You can’t perform that action at this time.
0 commit comments