llvmPackages/update.sh: Support LLVM 13+

This commit is contained in:
Michael Weiss 2021-08-27 16:56:21 +02:00
parent 0f157df1a3
commit 00e380f1be
No known key found for this signature in database
GPG key ID: 5BE487C4D4771D83

View file

@ -19,6 +19,12 @@ sed -Ei \
"$FILE"
readonly ATTRSET="llvmPackages_$VERSION_MAJOR"
if [ "$VERSION_MAJOR" -ge "13" ]; then
readonly SOURCES=(
"llvm.src"
)
else
readonly SOURCES=(
"clang-unwrapped.src"
"compiler-rt.src"
@ -32,6 +38,7 @@ readonly SOURCES=(
"llvm.polly_src"
"openmp.src"
)
fi
for SOURCE in "${SOURCES[@]}"; do
echo "Updating the hash of $SOURCE:"