This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e6e58f  ARROW-9123: [Python][wheel] Use libzstd.a explicitly
8e6e58f is described below

commit 8e6e58f2e9144f40265b7d203eeb46bf6323c9cc
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sun Jun 14 08:22:22 2020 +0900

    ARROW-9123: [Python][wheel] Use libzstd.a explicitly
    
    ARROW_ZSTD_USE_SHARED is introduced by ARROW-9084. We need to set
    ARROW_ZSTD_USE_SHARED=OFF explicitly to use static zstd library.
    
    Closes #7427 from kou/python-wheel-use-static-zstd
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 python/manylinux201x/build_arrow.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/python/manylinux201x/build_arrow.sh 
b/python/manylinux201x/build_arrow.sh
index a783998..3e0d44d 100755
--- a/python/manylinux201x/build_arrow.sh
+++ b/python/manylinux201x/build_arrow.sh
@@ -114,6 +114,7 @@ PATH="${CPYTHON_PATH}/bin:${PATH}" cmake \
     -DARROW_WITH_SNAPPY=ON \
     -DARROW_WITH_ZLIB=ON \
     -DARROW_WITH_ZSTD=ON \
+    -DARROW_ZSTD_USE_SHARED=OFF \
     -DBoost_NAMESPACE=arrow_boost \
     -DBOOST_ROOT=/arrow_boost_dist \
     -DCMAKE_BUILD_TYPE=Release \

Reply via email to