This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit d7c1424e0f0e7c4ea4ccfed7deb2b6c36b251352 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]
