File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ all: optimized debug worker
8282debug : dist/sql-asm-debug.js dist/sql-wasm-debug.js
8383
8484dist/sql-asm-debug.js : $(BITCODE_FILES ) $(OUTPUT_WRAPPER_FILES ) $(OUTPUT_API_FILES ) $(EXPORTED_METHODS_JSON_FILES )
85- $(EMCC ) $(EMFLAGS ) $(EMFLAGS_DEBUG ) $(EMFLAGS_ASM ) $(BITCODE_FILES ) $(EMFLAGS_PRE_JS_FILES ) -o $@
85+ $(EMCC ) $(EMFLAGS ) $(EMFLAGS_DEBUG ) $(EMFLAGS_ASM_MEMORY_GROWTH ) $(BITCODE_FILES ) $(EMFLAGS_PRE_JS_FILES ) -o $@
8686 mv $@ out/tmp-raw.js
8787 cat src/shell-pre.js out/tmp-raw.js src/shell-post.js > $@
8888 rm out/tmp-raw.js
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ custom build by [@brodybits (Christopher J. Brody)](https://github.com/brodybits
44
55- support FTS4, FTS5, R-Tree, and JSON1
66- some more OMIT build flags to omit some obsolete SQLite features
7+ - ` dist/sql-asm-debug.js ` now built with ` -s ALLOW_MEMORY_GROWTH=1 ` to allow the allocated memory buffer to grow as needed
78- no ` dist ` JS or WASM artifacts are committed in this version of sql.js
89
910<!-- NOT INCLUDED in custom build:
You can’t perform that action at this time.
0 commit comments