This is an automated email from the ASF dual-hosted git repository. gavinchou pushed a commit to branch branch-3.0.1-tmp-arm in repository https://gitbox.apache.org/repos/asf/doris.git
commit 6b763b3c9d5d439060a4cdfb6ded39dafb82273e Author: Dongyang Li <hello_step...@qq.com> AuthorDate: Mon Aug 19 15:31:17 2024 +0800 [fix](compile) skip build Cloud on ARM platform (#39508) ## Proposed changes Issue Number: close #xxx <!--Describe your changes.--> Co-authored-by: stephen <hello-step...@qq.com> --- build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.sh b/build.sh index e2a7f33bd52..2eca69a17a6 100755 --- a/build.sh +++ b/build.sh @@ -271,6 +271,12 @@ else fi fi +ARCH="$(uname -m)" +if [[ "${ARCH}" == "aarch64" ]]; then + echo "WARNING: Cloud module is not supported on ARM platform, will skip building it." + BUILD_CLOUD=0 +fi + if [[ "${HELP}" -eq 1 ]]; then usage fi --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org