Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev/tasks/python-wheels/osx-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ function build_wheel {
-DBoost_NAMESPACE=arrow_boost \
-DARROW_FLIGHT=ON \
-DgRPC_SOURCE=SYSTEM \
-DARROW_PROTOBUF_USE_SHARED=OFF \
-DMAKE=make \
..
make -j5
Expand Down
6 changes: 5 additions & 1 deletion dev/tasks/python-wheels/travis.osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ before_install:
- brew update
- brew upgrade cmake
- brew install bison flex grpc openssl llvm@7
# Remove shared grpc libraries installed by brew to make sure
# we are linked against the static ones.
- rm -f /usr/local/opt/grpc/lib/*.dylib

- export CONFIG_PATH=`pwd`/arrow/dev/tasks/python-wheels/osx-build.sh
- source multibuild/common_utils.sh
Expand All @@ -63,8 +66,9 @@ install:
# the following functions are defined in osx-build.sh
- build_wheel arrow

# test the built wheels, remove llvm to ensure it links statically
# test the built wheels, remove llvm and grpc to ensure they link statically
- brew uninstall llvm@7
- brew uninstall grpc
- install_run arrow

# move built wheels to a top level directory
Expand Down