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

Reduce amount of cmake log from building & downloading libArrow #4103

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Changes from 1 commit
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
14 changes: 12 additions & 2 deletions rerun_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,17 @@ if(RERUN_DOWNLOAD_AND_BUILD_ARROW)
PREFIX ${ARROW_DOWNLOAD_PATH}
GIT_REPOSITORY https://github.com/apache/arrow.git
GIT_TAG apache-arrow-10.0.1
GIT_SHALLOW true
GIT_PROGRESS true
GIT_SHALLOW ON

# Git progress sounds like a nice idea but is in practive very spammy.
# GIT_PROGRESS ON
Wumpf marked this conversation as resolved.
Show resolved Hide resolved

# LOG_X ON means that the output of the command will *not* be printed to the console,
# but instead be directed to a file (it logs where the file goes).
Wumpf marked this conversation as resolved.
Show resolved Hide resolved
LOG_CONFIGURE ON
LOG_BUILD ON
LOG_INSTALL ON

CMAKE_ARGS
--preset ninja-debug-minimal
-DARROW_IPC=ON
Expand All @@ -180,6 +189,7 @@ if(RERUN_DOWNLOAD_AND_BUILD_ARROW)
-DBOOST_SOURCE=BUNDLED
-DARROW_BOOST_USE_SHARED=OFF
-DARROW_CXXFLAGS=${DARROW_CXXFLAGS}

SOURCE_SUBDIR cpp
BUILD_BYPRODUCTS ${ARROW_LIBRARY_FILE}
)
Expand Down
Loading