Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ override_dh_auto_configure:
-DARROW_CUDA=$${ARROW_CUDA} \
-DARROW_GANDIVA=$${ARROW_GANDIVA} \
-DARROW_GANDIVA_JAVA=OFF \
-DARROW_MIMALLOC=ON \
-DARROW_ORC=ON \
-DARROW_PARQUET=ON \
-DARROW_PLASMA=$${ARROW_PLASMA} \
Expand Down
1 change: 1 addition & 0 deletions dev/tasks/linux-packages/apache-arrow/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ override_dh_auto_configure:
-DARROW_FLIGHT=ON \
-DARROW_GANDIVA=ON \
-DARROW_GANDIVA_JAVA=OFF \
-DARROW_MIMALLOC=ON \
-DARROW_ORC=ON \
-DARROW_PARQUET=ON \
-DARROW_PLASMA=$${ARROW_PLASMA} \
Expand Down
4 changes: 4 additions & 0 deletions dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

%define use_flight (%{_centos_ver} >= 8)
%define use_gandiva (%{_centos_ver} >= 8 && %{_arch} != "aarch64")
%define use_mimalloc (%{_centos_ver} >= 8)
%define use_ninja (%{_centos_ver} >= 8)
# TODO: Enable this. This works on local but is fragile on GitHub Actions and
# Travis CI.
Expand Down Expand Up @@ -115,6 +116,9 @@ cd cpp/build
%endif
%if %{use_gandiva}
-DARROW_GANDIVA=ON \
%endif
%if %{use_mimalloc}
-DARROW_MIMALLOC=ON \
%endif
-DARROW_ORC=ON \
-DARROW_PARQUET=ON \
Expand Down