You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update to Emscripten 3.1.52
3.1.52 no longer allows using .bc, so use .o instead. Using .a throws
"Unknown format, not a static library!".
* Upgrade to Emscripten 3.1.64
v3.1.55 removed the --memory-init-file option, and this caused the build
to fail with "emcc: error: --memory-init-file is no longer supported".
Fixed by removing the option from Makefile.
Copy file name to clipboardExpand all lines: Makefile
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,6 @@ SQLITE_COMPILATION_FLAGS = \
30
30
# Since tihs is a library and not a standalone executable, we don't want to catch unhandled Node process exceptions
31
31
# So, we do : `NODEJS_CATCH_EXIT=0`, which fixes issue: https://github.com/sql-js/sql.js/issues/173 and https://github.com/sql-js/sql.js/issues/262
# Since the extension-functions.c includes other headers in the sqlite_amalgamation, we declare that this depends on more than just extension-functions.c
0 commit comments