Skip to content
Closed
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
4 changes: 4 additions & 0 deletions thirdparty/build-thirdparty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2372,6 +2372,10 @@ if [[ "${#packages[@]}" -eq 0 ]]; then
)
if [[ "$(uname -s)" == 'Darwin' ]]; then
read -r -a packages <<<"binutils gettext ${packages[*]}"
# hadoop_libs, the 3.3.6 fork, stays Linux-only: it carries none of the macOS fixes
# apache/doris-thirdparty#407 made to the 3.4 fork, and nothing built here reads its
# hadoop_hdfs/ prefix - the cloud module, its only other consumer, is Linux-only too.
read -r -a packages <<<"${packages[*]} hadoop_libs_3_4"
elif [[ "$(uname -s)" == 'Linux' ]]; then
read -r -a packages <<<"${packages[*]} hadoop_libs"
read -r -a packages <<<"${packages[*]} hadoop_libs_3_4"
Expand Down
Loading