Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apache-arrow: switch to llvm@17 #169354

Merged
merged 22 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9ad4cd9
apache-arrow: switch to llvm@17
carlocab Mar 20, 2024
d2c8045
apache-arrow-glib: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
e856794
gdal: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
58064cd
mapnik: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
325382a
mapserver: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
b8ee135
osm2pgrouting: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
5fa0fd1
osmcoastline: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
59f323c
pgrouting: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
1f3a860
postgis: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
3e885df
rtabmap: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
a586036
spatialite-gui: remove LLVM from library search paths
ZhongRuoyu Apr 18, 2024
ff14d96
apache-arrow: update 15.0.2_2 bottle.
ZhongRuoyu Apr 18, 2024
e4f1363
apache-arrow-glib: update 15.0.2_1 bottle.
ZhongRuoyu Apr 18, 2024
06590a1
gdal: update 3.8.5_1 bottle.
ZhongRuoyu Apr 18, 2024
9f8ff5e
mapnik: update 3.1.0_27 bottle.
ZhongRuoyu Apr 18, 2024
33daa81
mapserver: update 8.0.1_4 bottle.
ZhongRuoyu Apr 18, 2024
c84e4c1
osm2pgrouting: update 2.3.8_12 bottle.
ZhongRuoyu Apr 18, 2024
0440e52
osmcoastline: update 2.4.0_5 bottle.
ZhongRuoyu Apr 18, 2024
3342e50
pgrouting: update 3.6.2_1 bottle.
ZhongRuoyu Apr 18, 2024
c297b28
postgis: update 3.4.2_1 bottle.
ZhongRuoyu Apr 18, 2024
811900f
rtabmap: update 0.21.4_2 bottle.
ZhongRuoyu Apr 18, 2024
832caa8
spatialite-gui: update 2.1.0-beta1_5 bottle.
ZhongRuoyu Apr 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Formula/a/apache-arrow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class ApacheArrow < Formula
mirror "https://archive.apache.org/dist/arrow/arrow-15.0.2/apache-arrow-15.0.2.tar.gz"
sha256 "abbf97176db6a9e8186fe005e93320dac27c64562755c77de50a882eb6179ac6"
license "Apache-2.0"
revision 1
revision 2
head "https://github.com/apache/arrow.git", branch: "main"

bottle do
Expand All @@ -26,7 +26,7 @@ class ApacheArrow < Formula
depends_on "bzip2"
depends_on "glog"
depends_on "grpc"
depends_on "llvm"
depends_on "llvm@17"
depends_on "lz4"
depends_on "openssl@3"
depends_on "protobuf"
Expand All @@ -43,7 +43,7 @@ class ApacheArrow < Formula
def install
# Work around an Xcode 15 linker issue which causes linkage against LLVM's
# libunwind due to it being present in a library search path.
ENV.remove "HOMEBREW_LIBRARY_PATHS", Formula["llvm"].opt_lib if DevelopmentTools.clang_build_version >= 1500
ENV.remove "HOMEBREW_LIBRARY_PATHS", Formula["llvm@17"].opt_lib if DevelopmentTools.clang_build_version >= 1500

args = %W[
-DCMAKE_INSTALL_RPATH=#{rpath}
Expand Down