Skip to content

Commit

Permalink
Make clang a normal tool on mac (alisw#5648)
Browse files Browse the repository at this point in the history
If we find a **known to be compatible** tool, we use it,
otherwise we do not play tricks just to stay on the latest version
provided by brew.
  • Loading branch information
ktf authored Oct 4, 2024
1 parent a896d44 commit 218928f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
21 changes: 9 additions & 12 deletions arrow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source: https://github.com/alisw/arrow.git
requires:
- boost
- lz4
- Clang:(?!.*osx)
- Clang
- protobuf
- utf8proc
- OpenSSL:(?!osx)
Expand All @@ -19,6 +19,7 @@ build_requires:
- double-conversion
- re2
- alibuild-recipe-tools
- ninja
env:
ARROW_HOME: "$ARROW_ROOT"
---
Expand Down Expand Up @@ -58,17 +59,13 @@ esac

mkdir -p ./src_tmp
rsync -a --exclude='**/.git' --delete --delete-excluded "$SOURCEDIR/" ./src_tmp/

case $ARCHITECTURE in
osx*)
# use default llvm from homebrew if available
if [ -d "$(brew --prefix llvm)" ]; then
CLANG_EXECUTABLE="$(brew --prefix llvm)/bin/clang"
else
# fall back to llvm@17
if [ -d "$(brew --prefix llvm)@17" ]; then
CLANG_EXECUTABLE="$(brew --prefix llvm)@17/bin/clang"
fi
# use compatible llvm@18 from brew, if available. This
# must match the prefer_system_check in clang.sh
CLANG_EXECUTABLE="${CLANG_REVISION:+$CLANG_ROOT/bin-safe/clang}"
if [ -z "${CLANG_EXECUTABLE}" -a -d "$(brew --prefix llvm)@18" ]; then
CLANG_EXECUTABLE="$(brew --prefix llvm)@18/bin/clang"
fi
;;
*)
Expand All @@ -81,6 +78,7 @@ esac
cmake ./src_tmp/cpp \
${CMAKE_SHARED_LINKER_FLAGS:+-DCMAKE_SHARED_LINKER_FLAGS="$CMAKE_SHARED_LINKER_FLAGS"} \
-DARROW_DEPENDENCY_SOURCE=SYSTEM \
-G Ninja \
-DCMAKE_BUILD_TYPE=Release \
${CXXSTD:+-DCMAKE_CXX_STANDARD=$CXXSTD} \
-DBUILD_SHARED_LIBS=TRUE \
Expand Down Expand Up @@ -125,8 +123,7 @@ cmake ./src_tmp/cpp
-DCLANG_EXECUTABLE="$CLANG_EXECUTABLE" \
${GCC_TOOLCHAIN_REVISION:+-DGCC_TOOLCHAIN_ROOT=`find "$GCC_TOOLCHAIN_ROOT/lib" -name crtbegin.o -exec dirname {} \;`}
make ${JOBS:+-j $JOBS}
make install
cmake --build . -- ${JOBS:+-j $JOBS} install
find "$INSTALLROOT/share" -name '*-gdb.py' -exec mv {} "$INSTALLROOT/lib" \;
# Modulefile
Expand Down
3 changes: 3 additions & 0 deletions clang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ build_requires:
- ninja
env:
LLVM_ROOT: "$CLANG_ROOT" # needed by LLVMAlt
prefer_system: (osx.*)
prefer_system_check:
test -d $(brew --prefix llvm@18)
---
#!/bin/bash -e

Expand Down

0 comments on commit 218928f

Please sign in to comment.