Skip to content

Commit

Permalink
Also bump c++ to arrow 18
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Oct 29, 2024
1 parent aab0e52 commit fb5c3db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rerun_cpp/download_and_build_arrow.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function(download_and_build_arrow)
arrow_cpp
PREFIX ${ARROW_DOWNLOAD_PATH}
GIT_REPOSITORY https://github.com/apache/arrow.git
GIT_TAG apache-arrow-10.0.1
GIT_TAG apache-arrow-18.0.0
GIT_SHALLOW ON
GIT_PROGRESS OFF # Git progress sounds like a nice idea but is in practice very spammy.

Expand All @@ -80,14 +80,14 @@ function(download_and_build_arrow)
LOG_CONFIGURE ON
LOG_BUILD ON
LOG_INSTALL ON

CMAKE_ARGS
--preset ${ARROW_CMAKE_PRESET}
-DARROW_BOOST_USE_SHARED=OFF
-DARROW_BUILD_SHARED=${ARROW_BUILD_SHARED}
-DARROW_BUILD_STATIC=${ARROW_BUILD_STATIC}
-DARROW_CXXFLAGS=${ARROW_CXXFLAGS}
-DARROW_IPC=OFF
-DARROW_COMPUTE=OFF
-DARROW_IPC=ON # Needed due to: https://github.com/apache/arrow/issues/44563
-DARROW_JEMALLOC=OFF # We encountered some build issues with jemalloc, use mimalloc instead.
-DARROW_MIMALLOC=ON
-DARROW_USE_ASAN=${ARROW_ASAN}
Expand Down

0 comments on commit fb5c3db

Please sign in to comment.