This is an automated email from the ASF dual-hosted git repository.
wesm 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 954e3f4 ARROW-4251: [C++][Release] Add option to set
ARROW_BOOST_VENDORED environment variable in verify-release-candidate.sh
954e3f4 is described below
commit 954e3f44c8753e548c7b24f2269135716a2429cd
Author: Wes McKinney <[email protected]>
AuthorDate: Thu Mar 14 14:30:38 2019 -0500
ARROW-4251: [C++][Release] Add option to set ARROW_BOOST_VENDORED
environment variable in verify-release-candidate.sh
I'm taking this for a spin on 0.12.1 RC0 on Ubuntu 14.04 (where the system
boost does not work -- see ARROW-4868)
Author: Wes McKinney <[email protected]>
Closes #3903 from wesm/ARROW-4251 and squashes the following commits:
eb38b0f68 <Wes McKinney> Add option to set ARROW_BOOST_VENDORED environment
variable in dev/release/verify-release-candidate.sh
---
dev/release/verify-release-candidate.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index e96cd28..8d4cc52 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -26,7 +26,8 @@
# - nodejs >= 6.0.0 (best way is to use nvm)
#
# If using a non-system Boost, set BOOST_ROOT and add Boost libraries to
-# LD_LIBRARY_PATH
+# LD_LIBRARY_PATH. If your system Boost is too old for the C++ libraries, then
+# set $ARROW_BOOST_VENDORED to "ON" or "1"
case $# in
3) ARTIFACT="$1"
@@ -49,6 +50,8 @@ set -o pipefail
HERE=$(cd `dirname "${BASH_SOURCE[0]:-$0}"` && pwd)
+ARROW_BOOST_VENDORED=${ARROW_BOOST_VENDORED:=OFF}
+
ARROW_DIST_URL='https://dist.apache.org/repos/dist/dev/arrow'
detect_cuda() {
@@ -207,6 +210,7 @@ ${ARROW_CMAKE_OPTIONS}
-DARROW_GANDIVA=ON
-DARROW_PARQUET=ON
-DARROW_BOOST_USE_SHARED=ON
+-DARROW_BOOST_VENDORED=$ARROW_BOOST_VENDORED
-DCMAKE_BUILD_TYPE=release
-DARROW_BUILD_TESTS=ON
-DARROW_CUDA=${ARROW_CUDA}