Skip to content

Commit 3f054c2

Browse files
authored
sqlite 3.38.5, emscripten 3 (#513)
* Upgrade to Emscripten 3.0.0 * Upgrade to sqlite 3.38.5
1 parent 5192a06 commit 3f054c2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.devcontainer/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
2323
# BEGIN EMSDK
2424
# Install EMSDK to /emsdk just like the EMSDK Dockerfile: https://github.com/emscripten-core/emsdk/blob/master/docker/Dockerfile
2525
ENV EMSDK /emsdk
26-
# We pin EMSDK to 2.0.15 rather than 'latest' so that everyone is using the same compiler version
27-
ENV EMSCRIPTEN_VERSION 2.0.29
26+
# We pin the EMSDK version rather than 'latest' so that everyone is using the same compiler version
27+
ENV EMSCRIPTEN_VERSION 3.0.0
2828

2929
RUN git clone https://github.com/emscripten-core/emsdk.git $EMSDK
3030

@@ -134,4 +134,4 @@ RUN apt-get install -y libdigest-sha3-perl
134134
ENV RUN_WORKER_TEST_WITHOUT_PUPPETEER_SANDBOX=1
135135

136136
# END PUPPETEER
137-
# --------------------------------------------------------------------
137+
# --------------------------------------------------------------------

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
# I got this handy makefile syntax from : https://github.com/mandel59/sqlite-wasm (MIT License) Credited in LICENSE
88
# To use another version of Sqlite, visit https://www.sqlite.org/download.html and copy the appropriate values here:
9-
SQLITE_AMALGAMATION = sqlite-amalgamation-3360000
10-
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2021/sqlite-amalgamation-3360000.zip
11-
SQLITE_AMALGAMATION_ZIP_SHA3 = d25609210ec93b3c8c7da66a03cf82e2c9868cfbd2d7d866982861855e96f972
9+
SQLITE_AMALGAMATION = sqlite-amalgamation-3380500
10+
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2022/sqlite-amalgamation-3380500.zip
11+
SQLITE_AMALGAMATION_ZIP_SHA3 = bfad5c42b767520a546251b9876e4a4b127fb651c437b968b149070e09252807
1212

1313
# Note that extension-functions.c hasn't been updated since 2010-02-06, so likely doesn't need to be updated
1414
EXTENSION_FUNCTIONS = extension-functions.c

0 commit comments

Comments
 (0)