File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ EXPORTED_METHODS_JSON_FILES = src/exported_functions.json src/exported_runtime_m
72
72
all : optimized debug worker
73
73
74
74
.PHONY : debug
75
- debug : dist/sql-asm-debug.js dist/sql-wasm-debug.js
75
+ debug : dist/sql-asm-debug.js dist/sql-wasm-debug.js dist/sql-asm-memory-growth-debug.js
76
76
77
77
dist/sql-asm-debug.js : $(BITCODE_FILES ) $(OUTPUT_WRAPPER_FILES ) $(OUTPUT_API_FILES ) $(EXPORTED_METHODS_JSON_FILES )
78
78
$(EMCC ) $(EMFLAGS ) $(EMFLAGS_DEBUG ) $(EMFLAGS_ASM ) $(BITCODE_FILES ) $(EMFLAGS_PRE_JS_FILES ) -o $@
@@ -86,6 +86,12 @@ dist/sql-wasm-debug.js: $(BITCODE_FILES) $(OUTPUT_WRAPPER_FILES) $(OUTPUT_API_FI
86
86
cat src/shell-pre.js out/tmp-raw.js src/shell-post.js > $@
87
87
rm out/tmp-raw.js
88
88
89
+ dist/sql-asm-memory-growth-debug.js : $(BITCODE_FILES ) $(OUTPUT_WRAPPER_FILES ) $(OUTPUT_API_FILES ) $(EXPORTED_METHODS_JSON_FILES )
90
+ $(EMCC ) $(EMFLAGS ) $(EMFLAGS_DEBUG ) $(EMFLAGS_ASM_MEMORY_GROWTH ) $(BITCODE_FILES ) $(EMFLAGS_PRE_JS_FILES ) -o $@
91
+ mv $@ out/tmp-raw.js
92
+ cat src/shell-pre.js out/tmp-raw.js src/shell-post.js > $@
93
+ rm out/tmp-raw.js
94
+
89
95
.PHONY : optimized
90
96
optimized : dist/sql-asm.js dist/sql-wasm.js dist/sql-asm-memory-growth.js
91
97
You can’t perform that action at this time.
0 commit comments