Repository: arrow Updated Branches: refs/heads/master 52089d609 -> a5f286174
ARROW-286: Build thirdparty dependencies in parallel Author: Uwe L. Korn <[email protected]> Closes #133 from xhochy/ARROW-286 and squashes the following commits: cb5a990 [Uwe L. Korn] ARROW-286: Build thirdparty dependencies in parallel Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/a5f28617 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/a5f28617 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/a5f28617 Branch: refs/heads/master Commit: a5f28617499a63ec44886bed35253f790e3674e1 Parents: 52089d6 Author: Uwe L. Korn <[email protected]> Authored: Thu Sep 8 22:58:37 2016 -0400 Committer: Wes McKinney <[email protected]> Committed: Thu Sep 8 22:58:37 2016 -0400 ---------------------------------------------------------------------- cpp/thirdparty/build_thirdparty.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/a5f28617/cpp/thirdparty/build_thirdparty.sh ---------------------------------------------------------------------- diff --git a/cpp/thirdparty/build_thirdparty.sh b/cpp/thirdparty/build_thirdparty.sh index f1738ff..6cc776d 100755 --- a/cpp/thirdparty/build_thirdparty.sh +++ b/cpp/thirdparty/build_thirdparty.sh @@ -62,7 +62,7 @@ if [ -n "$F_ALL" -o -n "$F_GTEST" ]; then CXXFLAGS=-fPIC cmake . || { echo "cmake $GOOGLETEST_ERROR"; exit 1; } fi - make VERBOSE=1 || { echo "Make $GOOGLETEST_ERROR" ; exit 1; } + make -j$PARALLEL VERBOSE=1 || { echo "Make $GOOGLETEST_ERROR" ; exit 1; } fi # build google benchmark @@ -76,7 +76,7 @@ if [ -n "$F_ALL" -o -n "$F_GBENCHMARK" ]; then fi cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_CXX_FLAGS="-fPIC $CMAKE_CXX_FLAGS" . || { echo "cmake $GBENCHMARK_ERROR" ; exit 1; } - make VERBOSE=1 install || { echo "make $GBENCHMARK_ERROR" ; exit 1; } + make -j$PARALLEL VERBOSE=1 install || { echo "make $GBENCHMARK_ERROR" ; exit 1; } fi FLATBUFFERS_ERROR="failed for flatbuffers"
