From ef3227529fef94f74b8863f212b6b02a82c5f686 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Fri, 8 Sep 2023 16:03:19 +0100 Subject: README.md: We need to install wasi-libc on Debian Signed-off-by: Andrew Clayton --- .github/workflows/build_tests.yaml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_tests.yaml b/.github/workflows/build_tests.yaml index b83753c..30e5cb8 100644 --- a/.github/workflows/build_tests.yaml +++ b/.github/workflows/build_tests.yaml @@ -56,7 +56,7 @@ jobs: curl https://sh.rustup.rs -sSf | sh -s -- -y . "$HOME/.cargo/env" rustup target add wasm32-wasi - wget -O- https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sysroot-20.0.tar.gz | tar -xvzf - -C ${RUNNER_TEMP} + wget -O- https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sysroot-20.0.tar.gz | tar -xzf - -C ${RUNNER_TEMP} - uses: actions/checkout@v3 with: diff --git a/README.md b/README.md index fbf2d9b..286551a 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ that last task. Install the following as normal ``` -# apt install make clang llvm lld +# apt install wasi-libc make clang llvm lld ``` For the rest you will likely need to use [rustup](https://rustup.rs). Caveat -- cgit