We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed0c486 commit 6d27805Copy full SHA for 6d27805
1 file changed
wasicontainer/install-wasi.sh
@@ -1,11 +1,11 @@
1
#! /bin/bash -ex
2
3
WASI_SDK_VERSIONS=(
4
- # 16 for 3.11 & 3.12 is special-cased below.
+ # 21 for 3.11 & 3.12 is special-cased below.
5
24 # 3.13 (w/ special symlinking below), 3.14
6
29 # 3.15
7
)
8
-WASMTIME_VERSION="38.0.4"
+WASMTIME_VERSION="39.0.1"
9
10
WASI_SDK_ROOT=/opt
11
@@ -14,7 +14,7 @@ mkdir --parents ${WASI_SDK_ROOT}
14
# For 3.11, 3.12.
15
# There is no Arm support for WASI SDK < 23.
16
if [ "${TARGETARCH}" = "amd64" ]; then
17
- URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-16/wasi-sdk-16.0-linux.tar.gz
+ URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-16/wasi-sdk-21.0-linux.tar.gz
18
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip
19
fi
20
0 commit comments