| ... | @@ -9,7 +9,7 @@ sudo apt-get install -y cmake s3cmd tidy | ... | @@ -9,7 +9,7 @@ sudo apt-get install -y cmake s3cmd tidy |
| 9 | ZIGDIR="$(pwd)" | 9 | ZIGDIR="$(pwd)" |
| 10 | ARCH="$(uname -m)" | 10 | ARCH="$(uname -m)" |
| 11 | TARGET="$ARCH-linux-musl" | 11 | TARGET="$ARCH-linux-musl" |
| 12 | CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.8.0-dev.1939+5a3ea9bec" | 12 | CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.8.0-dev.2168+2d1196773" |
| 13 | PREFIX="$HOME/$CACHE_BASENAME" | 13 | PREFIX="$HOME/$CACHE_BASENAME" |
| 14 | MCPU="baseline" | 14 | MCPU="baseline" |
| 15 | JOBS="-j$(nproc)" | 15 | JOBS="-j$(nproc)" |
| ... | @@ -25,8 +25,10 @@ wget -nv "https://ziglang.org/deps/$QEMUBASE.tar.xz" | ... | @@ -25,8 +25,10 @@ wget -nv "https://ziglang.org/deps/$QEMUBASE.tar.xz" |
| 25 | tar xf "$QEMUBASE.tar.xz" | 25 | tar xf "$QEMUBASE.tar.xz" |
| 26 | export PATH="$(pwd)/$QEMUBASE/bin:$PATH" | 26 | export PATH="$(pwd)/$QEMUBASE/bin:$PATH" |
| 27 | | 27 | |
| 28 | WASMTIME="wasmtime-v0.20.0-x86_64-linux" | 28 | # Bump to v0.23 once this issue is resolved: |
| 29 | wget -nv "https://github.com/bytecodealliance/wasmtime/releases/download/v0.20.0/$WASMTIME.tar.xz" | 29 | # https://github.com/ziglang/zig/issues/8742 |
| | 30 | WASMTIME="wasmtime-v0.22.1-x86_64-linux" |
| | 31 | wget -nv "https://github.com/bytecodealliance/wasmtime/releases/download/v0.22.1/$WASMTIME.tar.xz" |
| 30 | tar xf "$WASMTIME.tar.xz" | 32 | tar xf "$WASMTIME.tar.xz" |
| 31 | export PATH="$(pwd)/$WASMTIME:$PATH" | 33 | export PATH="$(pwd)/$WASMTIME:$PATH" |
| 32 | | 34 | |