llvmPackages/update.sh: Support LLVM 13+

wip/nixpkgs-raku
Michael Weiss 3 years ago
parent 0f157df1a3
commit 00e380f1be
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83
  1. 33
      pkgs/development/compilers/llvm/update.sh

@ -19,19 +19,26 @@ sed -Ei \
"$FILE"
readonly ATTRSET="llvmPackages_$VERSION_MAJOR"
readonly SOURCES=(
"clang-unwrapped.src"
"compiler-rt.src"
"clang-unwrapped.clang-tools-extra_src"
"libcxx.src"
"libcxxabi.src"
"libunwind.src"
"lld.src"
"lldb.src"
"llvm.src"
"llvm.polly_src"
"openmp.src"
)
if [ "$VERSION_MAJOR" -ge "13" ]; then
readonly SOURCES=(
"llvm.src"
)
else
readonly SOURCES=(
"clang-unwrapped.src"
"compiler-rt.src"
"clang-unwrapped.clang-tools-extra_src"
"libcxx.src"
"libcxxabi.src"
"libunwind.src"
"lld.src"
"lldb.src"
"llvm.src"
"llvm.polly_src"
"openmp.src"
)
fi
for SOURCE in "${SOURCES[@]}"; do
echo "Updating the hash of $SOURCE:"

Loading…
Cancel
Save