Skip to content

Commit

Permalink
add more clangs
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Sep 6, 2024
1 parent 589168e commit 5984f1c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions builder/imports/llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
set -eux
# read optional command line argument
LLVM_VERSION=12
LLVM_VERSION=18
if [ "$#" -eq 1 ]; then
LLVM_VERSION=$1
fi
Expand All @@ -53,7 +53,12 @@
LLVM_VERSION_PATTERNS[10]="-10"
LLVM_VERSION_PATTERNS[11]="-11"
LLVM_VERSION_PATTERNS[12]="-12"
LLVM_VERSION_PATTERNS[13]=""
LLVM_VERSION_PATTERNS[13]="-13"
LLVM_VERSION_PATTERNS[14]="-14"
LLVM_VERSION_PATTERNS[15]="-15"
LLVM_VERSION_PATTERNS[16]="-16"
LLVM_VERSION_PATTERNS[17]="-17"
LLVM_VERSION_PATTERNS[18]="-18"
if [ ! ${LLVM_VERSION_PATTERNS[$LLVM_VERSION]+_} ]; then
echo "This script does not support LLVM version $LLVM_VERSION"
Expand Down

0 comments on commit 5984f1c

Please sign in to comment.