This is an automated email from the ASF dual-hosted git repository.
hellostephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new be80cf4b8b4 [fix](compile) skip build Cloud on ARM platform (#39508)
be80cf4b8b4 is described below
commit be80cf4b8b42d522ad2f1112a8c42dc804a9ed59
Author: Dongyang Li <[email protected]>
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 <[email protected]>
---
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: [email protected]
For additional commands, e-mail: [email protected]