We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b5bd2 commit b484142Copy full SHA for b484142
dev/tasks/conda-recipes/arrow-cpp/build-arrow.sh
@@ -43,6 +43,12 @@ else
43
EXTRA_CMAKE_ARGS=" ${EXTRA_CMAKE_ARGS} -DARROW_GANDIVA=ON"
44
fi
45
46
+if [[ "${target_platform}" == "linux-aarch64" ]]; then
47
+ # To support both 4k and 64k page arm64 systems
48
+ # See https://github.com/apache/arrow/pull/10940
49
+ EXTRA_CMAKE_ARGS=" ${EXTRA_CMAKE_ARGS} -DARROW_JEMALLOC_LG_PAGE=16"
50
+fi
51
+
52
cmake \
53
-DARROW_BOOST_USE_SHARED=ON \
54
-DARROW_BUILD_BENCHMARKS=OFF \
0 commit comments