diff options
author | stephan <stephan@noemail.net> | 2025-05-31 11:08:06 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-05-31 11:08:06 +0000 |
commit | 1ff4233f903d0fae532a6bda64ccbb7a319e13db (patch) | |
tree | e40ae04845b026d0f5a8c0a42588b2c4aa6f4574 /ext | |
parent | 10206572b6057c98ce9a7f2c7a9cedfdc0818d4c (diff) | |
download | sqlite-1ff4233f903d0fae532a6bda64ccbb7a319e13db.tar.gz sqlite-1ff4233f903d0fae532a6bda64ccbb7a319e13db.zip |
Move a mis-located makefile comment block.
FossilOrigin-Name: 7d884386bec11f47c2c18002dd8c573c9b5cb6f7cdf2307a96cccead05b6abf2
Diffstat (limited to 'ext')
-rw-r--r-- | ext/wasm/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wasm/GNUmakefile b/ext/wasm/GNUmakefile index 6470fd630..28387872f 100644 --- a/ext/wasm/GNUmakefile +++ b/ext/wasm/GNUmakefile @@ -598,8 +598,6 @@ emcc.flags += -v endif -# wasmMemory ==> required by our code for use with -sIMPORTED_MEMORY -# Emscripten 4.0.7 (2025-04-15) stops exporting HEAP* by default ######################################################################## # emcc flags for .c/.o. emcc.cflags := @@ -619,6 +617,8 @@ emcc.jsflags += -sNO_POLYFILL emcc.jsflags += -sEXPORTED_FUNCTIONS=@$(EXPORTED_FUNCTIONS.api) emcc.exportedRuntimeMethods := \ -sEXPORTED_RUNTIME_METHODS=wasmMemory,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAP64,HEAPU64 +# wasmMemory ==> required by our code for use with -sIMPORTED_MEMORY +# Emscripten 4.0.7 (2025-04-15) stops exporting HEAP* by default emcc.jsflags += $(emcc.exportedRuntimeMethods) emcc.jsflags += -sUSE_CLOSURE_COMPILER=0 emcc.jsflags += -sIMPORTED_MEMORY |