Skip to content
Merged
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
2 changes: 2 additions & 0 deletions ci/docker/debian-13-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ RUN apt-get update -y -q && \
libzstd-dev \
llvm-${llvm}-dev \
make \
mold \
ninja-build \
nlohmann-json3-dev \
npm \
Expand Down Expand Up @@ -124,6 +125,7 @@ ENV ARROW_ACERO=ON \
ARROW_S3=ON \
ARROW_SUBSTRAIT=ON \
ARROW_USE_CCACHE=ON \
ARROW_USE_MOLD=ON \
ARROW_WITH_BROTLI=ON \
ARROW_WITH_BZ2=ON \
ARROW_WITH_LZ4=ON \
Expand Down
2 changes: 2 additions & 0 deletions ci/docker/fedora-42-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ RUN dnf update -y && \
llvm-devel \
lz4-devel \
make \
mold \
ninja-build \
openssl-devel \
patch \
Expand Down Expand Up @@ -93,6 +94,7 @@ ENV ARROW_ACERO=ON \
ARROW_S3=ON \
ARROW_SUBSTRAIT=ON \
ARROW_USE_CCACHE=ON \
ARROW_USE_MOLD=ON \
ARROW_WITH_BROTLI=ON \
ARROW_WITH_BZ2=ON \
ARROW_WITH_LZ4=ON \
Expand Down
11 changes: 0 additions & 11 deletions cpp/cmake_modules/DefineOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -110,17 +110,6 @@ macro(resolve_option_dependencies)
if(MSVC_TOOLCHAIN)
set(ARROW_USE_GLOG OFF)
endif()
# Tests are crashed with mold + sanitizer checks.
if(ARROW_USE_ASAN
OR ARROW_USE_TSAN
OR ARROW_USE_UBSAN)
if(ARROW_USE_MOLD)
message(WARNING "ARROW_USE_MOLD is disabled when one of "
"ARROW_USE_ASAN, ARROW_USE_TSAN or ARROW_USE_UBSAN is specified "
"because it causes some problems.")
set(ARROW_USE_MOLD OFF)
endif()
endif()

tsort_bool_option_dependencies()
foreach(option_name ${ARROW_BOOL_OPTION_DEPENDENCIES_TSORTED})
Expand Down
Loading