| ... | @@ -6,6 +6,11 @@ set -e | ... | @@ -6,6 +6,11 @@ set -e |
| 6 | pacman -Suy --needed --noconfirm | 6 | pacman -Suy --needed --noconfirm |
| 7 | pacman -S --needed --noconfirm wget p7zip python3-pip tar xz | 7 | pacman -S --needed --noconfirm wget p7zip python3-pip tar xz |
| 8 | | 8 | |
| | 9 | TARBALL="llvm+clang+lld-13.0.0-x86_64-windows-msvc-release-mt.tar.xz" |
| | 10 | |
| 9 | pip install s3cmd | 11 | pip install s3cmd |
| 10 | wget -nv "https://ziglang.org/deps/llvm%2bclang%2blld-13.0.0-x86_64-windows-msvc-release-mt.tar.xz" | 12 | wget -nv "https://ziglang.org/deps/$TARBALL" |
| 11 | tar xf llvm+clang+lld-13.0.0-x86_64-windows-msvc-release-mt.tar.xz | 13 | # If the first extraction fails, re-try it once without overwriting old files; |
| | 14 | # this can happen if the tarball contains symlinks that are in the table of contents |
| | 15 | # before the files that they point to. |
| | 16 | tar xf $TARBALL || tar xfk $TARBALL |