File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/ci/docker/host-x86_64/dist-various-2 Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,18 @@ set -ex
55# Originally from https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
66curl https://ci-mirrors.rust-lang.org/rustc/2022-05-10-clang%2Bllvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz | \
77 tar xJf -
8- export PATH= ` pwd ` /clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04/bin: $PATH
8+ bin= " $PWD /clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04/bin"
99
1010git clone https://github.com/WebAssembly/wasi-libc
1111
1212cd wasi-libc
1313git reset --hard 9886d3d6200fcc3726329966860fc058707406cd
14- make -j$( nproc) INSTALL_DIR=/wasm32-wasi install
14+ make -j$( nproc) \
15+ CC=" $bin /clang" \
16+ NM=" $bin /llvm-nm" \
17+ AR=" $bin /llvm-ar" \
18+ INSTALL_DIR=/wasm32-wasi \
19+ install
1520
1621cd ..
1722rm -rf wasi-libc
You can’t perform that action at this time.
0 commit comments