File tree 3 files changed +8
-3
lines changed
site/source/docs/compiling
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,11 @@ fix in future releses. Current limitations include:
119
119
object does not work. This is because symbols are exported directly using
120
120
ES6 module syntax rathar than using a global `Module ` object.
121
121
122
- * `ccall `/`cwrap `, these depend on the internal `Module ` object.
122
+ * `ccall `/`cwrap ` are not supported (these depend on the internal `Module `
123
+ object).
124
+
125
+ * :ref: `abort_on_wasm_exceptions ` is not supported (requires wrapping wasm
126
+ exports).
123
127
124
128
125
129
Source Phase Imports (experimental)
Original file line number Diff line number Diff line change @@ -9460,6 +9460,7 @@ def test_emscripten_stack(self):
9460
9460
self .do_core_test ('test_stack_get_free.c' )
9461
9461
9462
9462
# Tests settings.ABORT_ON_WASM_EXCEPTIONS
9463
+ @no_modularize_instance ('ABORT_ON_WASM_EXCEPTIONS' )
9463
9464
def test_abort_on_exceptions (self ):
9464
9465
self .set_setting ('ABORT_ON_WASM_EXCEPTIONS' )
9465
9466
self .set_setting ('ALLOW_TABLE_GROWTH' )
Original file line number Diff line number Diff line change @@ -810,9 +810,9 @@ def limit_incoming_module_api():
810
810
default_setting ('INCOMING_MODULE_JS_API' , [])
811
811
812
812
if settings .MODULARIZE == 'instance' :
813
- diagnostics .warning ('experimental' , '-sMODULARIZE =instance is still experimental. Many features may not work or will change.' )
813
+ diagnostics .warning ('experimental' , 'MODULARIZE =instance is still experimental. Many features may not work or will change.' )
814
814
if options .oformat != OFormat .MJS :
815
- exit_with_error ('MODULARIZE instance is only compatible with ES module output format' )
815
+ exit_with_error ('MODULARIZE= instance is only compatible with ES module output format' )
816
816
if 'INCOMING_MODULE_JS_API' in user_settings :
817
817
for s in ['wasmMemory' , 'INITIAL_MEMORY' ]:
818
818
if s in settings .INCOMING_MODULE_JS_API :
You can’t perform that action at this time.
0 commit comments