aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/api/sqlite3-wasm.c
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-10-30 09:47:33 +0000
committerstephan <stephan@noemail.net>2022-10-30 09:47:33 +0000
commit1fc6ffccc55fc7105ce9426149e63446e062c01f (patch)
treeec2223831c80b6e521b3deb5aa28cbaf2762266f /ext/wasm/api/sqlite3-wasm.c
parentaf9cee12c1e57bbd92db0ebdd2a4f9f551b1d790 (diff)
downloadsqlite-1fc6ffccc55fc7105ce9426149e63446e062c01f.tar.gz
sqlite-1fc6ffccc55fc7105ce9426149e63446e062c01f.zip
Minor WASM build cleanups. Enable custom Module.instantiateWasm() when not in WASMFS mode (where it doesn't work). Add sqlite3.debugModule URL param to enable some module-init-time debugging output.
FossilOrigin-Name: 50f678846a2b3c3d0818f0bae89f2ee86252a2e6a9c7029ebaae3953ca0fa14c
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r--ext/wasm/api/sqlite3-wasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c
index 754f9cf0d..1ca51f0d2 100644
--- a/ext/wasm/api/sqlite3-wasm.c
+++ b/ext/wasm/api/sqlite3-wasm.c
@@ -1028,7 +1028,7 @@ int sqlite3_wasm_init_wasmfs(const char *zMountPoint){
#else
SQLITE_WASM_KEEP
int sqlite3_wasm_init_wasmfs(const char *zUnused){
- emscripten_console_warn("WASMFS OPFS is not compiled in.");
+ //emscripten_console_warn("WASMFS OPFS is not compiled in.");
if(zUnused){/*unused*/}
return SQLITE_NOTFOUND;
}