LLVM build script: Use LLVM 18 branch since compiler-rt fix got backported

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
Cyrill Leutwiler
2024-04-16 07:55:06 +02:00
parent bd0c62f99c
commit 8a6d43bcd3
+2 -2
View File
@@ -6,9 +6,9 @@ INSTALL_DIR="${PWD}/llvm18.0"
mkdir -p $INSTALL_DIR
# Clone LLVM (any revision after commit bd32aaa is supposed to work)
# Clone LLVM 18 (any revision after commit bd32aaa is supposed to work)
if [ ! -d "llvm-project" ]; then
git clone --depth 1 --branch main https://github.com/llvm/llvm-project.git
git clone --depth 1 --branch release/18.x https://github.com/llvm/llvm-project.git
fi