Skip to content

Commit 7f7218f

Browse files
authored
Rollup merge of #66133 - alexcrichton:update-wasi-libc, r=Mark-Simulacrum
Update the bundled `wasi-libc` repository This updates the libc that the `wasm32-wasi` target links against to the latest revision, mostly just bringing in minor bug fixes and minor wasm size improvements.
2 parents 40558c3 + 73df5c5 commit 7f7218f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: src/ci/docker/dist-various-2/build-wasi-toolchain.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44

55
set -ex
66

7-
# Originally from https://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz
8-
curl https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/clang%2Bllvm-8.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz | \
7+
# Originally from https://releases.llvm.org/9.0.0/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz
8+
curl https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/clang%2Bllvm-9.0.0-x86_64-linux-gnu-ubuntu-14.04.tar.xz | \
99
tar xJf -
10-
export PATH=`pwd`/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-14.04/bin:$PATH
10+
export PATH=`pwd`/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-14.04/bin:$PATH
1111

12-
git clone https://github.com/CraneStation/wasi-sysroot
12+
git clone https://github.com/CraneStation/wasi-libc
1313

14-
cd wasi-sysroot
15-
git reset --hard e5f14be38362f1ab83302895a6e74b2ffd0e2302
14+
cd wasi-libc
15+
git reset --hard a94d2d04e7722b323573da2bd04e909a5763d35b
1616
make -j$(nproc) INSTALL_DIR=/wasm32-wasi install
1717

1818
cd ..
19-
rm -rf reference-sysroot-wasi
19+
rm -rf wasi-libc
2020
rm -rf clang+llvm*

0 commit comments

Comments
 (0)