Skip to content

Commit

Permalink
arrow fallback to llvm@18 or 17
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Sep 26, 2024
1 parent e809f71 commit 9dece2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arrow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ case $ARCHITECTURE in
if [ -d "$(brew --prefix llvm)" ]; then
CLANG_EXECUTABLE="$(brew --prefix llvm)/bin/clang"
else
# fall back to llvm@18
if [ -d "$(brew --prefix llvm)@18" ]; then
CLANG_EXECUTABLE="$(brew --prefix llvm)@18/bin/clang"
fi
# fall back to llvm@17
if [ -d "$(brew --prefix llvm)@17" ]; then
CLANG_EXECUTABLE="$(brew --prefix llvm)@17/bin/clang"
Expand Down

0 comments on commit 9dece2b

Please sign in to comment.