summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2024-11-06 22:33:25 +0000
committerAndrew Clayton <a.clayton@nginx.com>2024-11-06 22:33:25 +0000
commitf65925acc60bc12b83dd80eda1d18557274cad98 (patch)
tree505137acdf94e353241254a9dc80b0ca78f3331a /README
parent61691b701523a20850fa223ad86babf13a379371 (diff)
downloadproject_blackbird-f65925acc60bc12b83dd80eda1d18557274cad98.tar.gz
project_blackbird-f65925acc60bc12b83dd80eda1d18557274cad98.tar.bz2
README: Fix the libclang_rt.builtins-wasm32-wasi install commandHEADmaster
Starting with wasi-sdk-23 the directory layout of the tarball has changed from lib/wasi/... to libclang_rt.builtins-wasm32-wasi-VERSION/... Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'README')
-rw-r--r--README3
1 files changed, 1 insertions, 2 deletions
diff --git a/README b/README
index cb516af..57a4290 100644
--- a/README
+++ b/README
@@ -48,8 +48,7 @@ libclang_rt.builtins-wasm32.a
For either of the above you will also need the libclang wasm32-wasi runtime
library, this can be done with
-# wget -O- https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-24/libclang_rt.builtins-wasm32-wasi-24.0.tar.gz | tar --strip-components=1 -xvzf -
- -C $(dirname $(clang -print-runtime-dir))
+# mkdir $(dirname $(clang -print-runtime-dir))/wasi && wget -O- https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-24/libclang_rt.builtins-wasm32-wasi-24.0.tar.gz | tar --strip-components=1 -xvzf - -C $(dirname $(clang -print-runtime-dir))
That will install the following, path may vary slightly