From bef1294c0ab73fc4cb33570bcb7d91a29ebbb06d Mon Sep 17 00:00:00 2001 From: Rossi Sun Date: Fri, 10 Jan 2025 11:33:45 +0800 Subject: [PATCH] Update example to disable mimalloc as the default allocator --- cpp/examples/minimal_build/build_arrow.sh | 2 +- cpp/examples/tutorial_examples/build_arrow.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/examples/minimal_build/build_arrow.sh b/cpp/examples/minimal_build/build_arrow.sh index 402c312e4bc24..7045439c1a6fb 100755 --- a/cpp/examples/minimal_build/build_arrow.sh +++ b/cpp/examples/minimal_build/build_arrow.sh @@ -26,7 +26,7 @@ pushd $ARROW_BUILD_DIR # Enable the CSV reader as it's used by the example third-party build cmake /arrow/cpp \ -DARROW_CSV=ON \ - -DARROW_JEMALLOC=OFF \ + -DARROW_MIMALLOC=OFF \ $ARROW_CMAKE_OPTIONS make -j$NPROC diff --git a/cpp/examples/tutorial_examples/build_arrow.sh b/cpp/examples/tutorial_examples/build_arrow.sh index ec72a288c7ba5..4c08abdaae691 100755 --- a/cpp/examples/tutorial_examples/build_arrow.sh +++ b/cpp/examples/tutorial_examples/build_arrow.sh @@ -29,7 +29,7 @@ cmake /arrow/cpp \ -DARROW_DATASET=ON \ -DARROW_FILESYSTEM=ON \ -DARROW_PARQUET=ON \ - -DARROW_JEMALLOC=OFF \ + -DARROW_MIMALLOC=OFF \ $ARROW_CMAKE_OPTIONS make -j$NPROC