diff options
author | stephan <stephan@noemail.net> | 2023-07-27 01:38:19 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2023-07-27 01:38:19 +0000 |
commit | 4cfd54256dca63f95717428416033237e3bad607 (patch) | |
tree | 1ec70a483c01866679135af8dee586ba071b0772 /ext/wasm/common/whwasmutil.js | |
parent | 93853a48465e5eb14ab347eecc53f2b58a45ee02 (diff) | |
download | sqlite-4cfd54256dca63f95717428416033237e3bad607.tar.gz sqlite-4cfd54256dca63f95717428416033237e3bad607.zip |
Accommodate a breaking change in emcc 3.1.44.
FossilOrigin-Name: 2c5dd34199f5bcf729be814b8b46d9997821fe3a39ab12779c93df1bb2fd108d
Diffstat (limited to 'ext/wasm/common/whwasmutil.js')
-rw-r--r-- | ext/wasm/common/whwasmutil.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/wasm/common/whwasmutil.js b/ext/wasm/common/whwasmutil.js index f48e8a7d2..ee7ea20c3 100644 --- a/ext/wasm/common/whwasmutil.js +++ b/ext/wasm/common/whwasmutil.js @@ -111,7 +111,8 @@ of `target.instance` (a WebAssembly.Module instance) and it must contain the symbols exported by the WASM module associated with this code. In an Enscripten environment it must be set to - `Module['asm']`. The exports object must contain a minimum of the + `Module['asm']` (versions <=3.1.43) or `wasmExports` (versions + >=3.1.44). The exports object must contain a minimum of the following symbols: - `memory`: a WebAssembly.Memory object representing the WASM |