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
82
82
debug : dist/sql-asm-debug.js dist/sql-wasm-debug.js
83
83
84
84
dist/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 $@
86
86
mv $@ out/tmp-raw.js
87
87
cat src/shell-pre.js out/tmp-raw.js src/shell-post.js > $@
88
88
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
4
4
5
5
- support FTS4, FTS5, R-Tree, and JSON1
6
6
- 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
7
8
- no ` dist ` JS or WASM artifacts are committed in this version of sql.js
8
9
9
10
<!-- NOT INCLUDED in custom build:
You can’t perform that action at this time.
0 commit comments