From 6d4898360122f63d3f5b7a83613853cc78985675 Mon Sep 17 00:00:00 2001 From: Roman Golovanov <14174584+rgolovanov@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:33:57 +0200 Subject: [PATCH] Update download_and_build_arrow.cmake Proper use of some parameters: * ARROW_ASAN - shall be used instead of RERUN_USE_ASAN because otherwise the property isn't set in MSVC configuration * ARROW_CXXFLAGS - there was a typo with unnecessary D in the beginning --- rerun_cpp/download_and_build_arrow.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rerun_cpp/download_and_build_arrow.cmake b/rerun_cpp/download_and_build_arrow.cmake index 0a15a6e52940..5a60523ddb58 100644 --- a/rerun_cpp/download_and_build_arrow.cmake +++ b/rerun_cpp/download_and_build_arrow.cmake @@ -83,11 +83,11 @@ function(download_and_build_arrow) -DARROW_BOOST_USE_SHARED=OFF -DARROW_BUILD_SHARED=${ARROW_BUILD_SHARED} -DARROW_BUILD_STATIC=${ARROW_BUILD_STATIC} - -DARROW_CXXFLAGS=${DARROW_CXXFLAGS} + -DARROW_CXXFLAGS=${ARROW_CXXFLAGS} -DARROW_IPC=OFF -DARROW_JEMALLOC=OFF # We encountered some build issues with jemalloc, use mimalloc instead. -DARROW_MIMALLOC=ON - -DARROW_USE_ASAN=${RERUN_USE_ASAN} + -DARROW_USE_ASAN=${ARROW_ASAN} -DARROW_USE_TSAN=OFF -DARROW_USE_UBSAN=OFF -DBOOST_SOURCE=BUNDLED