1
Fork 0
This commit is contained in:
Motiejus Jakštys 2024-11-09 15:30:45 +02:00
parent 7094c8b0b6
commit 939ace63fb
1 changed files with 21 additions and 0 deletions

21
run
View File

@ -464,6 +464,26 @@ step19() {
}
}
# commit fc9ab4144cc577e5293e685af2d53ac1cb3415ce
# Author: Andrew Kelley <andrew@ziglang.org>
# Date: 2023-04-06T09:22:29+03:00
#
# update libcxx to LLVM 16.0.1
#
STEP20=fc9ab4144cc577e5293e685af2d53ac1cb3415ce
STEP20_=0.10.0-2440-gfc9ab4144c
step20() {
rm -fr "../zig-$STEP20_"
git archive --prefix=zig-$STEP20_/ $STEP20 | tar -C .. -x
{
pushd "../zig-$STEP20_"
cp ../zig-$STEP19_/stage1/zig1.wasm stage1/zig1.wasm
halfbuild
popd
}
}
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
set -xeuo pipefail
step=${1:-step00}
@ -490,4 +510,5 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
if [[ "$step" -le 17 ]]; then step17; fi
if [[ "$step" -le 18 ]]; then step18; fi
if [[ "$step" -le 19 ]]; then step19; fi
if [[ "$step" -le 20 ]]; then step20; fi
fi