about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-08-01 11:25:31 +0000
committerbors <bors@rust-lang.org>2020-08-01 11:25:31 +0000
commitcfdf9d335501cc0a53ae69c940095cca7d4be0f8 (patch)
tree01361e2f0d6e02b4bc23d49e1cf67ded58816631
parentdfe1e3b641abbede6230e3931d14f0d43e5b8e54 (diff)
parentaaffb06c041d282e4eddfd323659e76b55f3781d (diff)
downloadrust-cfdf9d335501cc0a53ae69c940095cca7d4be0f8.tar.gz
rust-cfdf9d335501cc0a53ae69c940095cca7d4be0f8.zip
Auto merge of #74993 - sunfishcode:update-wasi-libc, r=alexcrichton
Update the bundled wasi-libc with libstd

This just updates WASI libc, in preparation for WASI reactor support in
a separate change.

r? @alexcrichton
-rwxr-xr-xsrc/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh b/src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh
index c82031690ab..e9e4a893476 100755
--- a/src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh
+++ b/src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh
@@ -9,10 +9,10 @@ curl https://ci-mirrors.rust-lang.org/rustc/clang%2Bllvm-9.0.0-x86_64-linux-gnu-
   tar xJf -
 export PATH=`pwd`/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-14.04/bin:$PATH
 
-git clone https://github.com/CraneStation/wasi-libc
+git clone https://github.com/WebAssembly/wasi-libc
 
 cd wasi-libc
-git reset --hard 9efc2f428358564fe64c374d762d0bfce1d92507
+git reset --hard 215adc8ac9f91eb055311acc72683fd2eb1ae15a
 make -j$(nproc) INSTALL_DIR=/wasm32-wasi install
 
 cd ..