This is an automated email from the ASF dual-hosted git repository.
loogn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/geaflow.git
The following commit(s) were added to refs/heads/master by this push:
new 0a9953e9 Fix building issue on aarch64 (#580)
0a9953e9 is described below
commit 0a9953e9c9d790e7dd7a9cc1dfb564c988153716
Author: chzhoo <[email protected]>
AuthorDate: Mon Aug 11 14:08:06 2025 +0800
Fix building issue on aarch64 (#580)
---
build.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.sh b/build.sh
index c6e81430..cc5410ca 100755
--- a/build.sh
+++ b/build.sh
@@ -65,7 +65,7 @@ if [[ "$ARCH" = "x86_64" ]]; then
fi
GEAFLOW_IMAGE_NAME="geaflow"
CONSOLE_IMAGE_NAME="geaflow-console"
-elif [[ "$ARCH" = "arm64" ]]; then
+elif [[ "$ARCH" = "arm64" || "$ARCH" = "aarch64" ]]; then
if [[ "$USE_UBUNTU" = "true" ]]; then
DOCKER_FILE="Dockerfile-arm64-ubuntu"
else
@@ -74,7 +74,7 @@ elif [[ "$ARCH" = "arm64" ]]; then
GEAFLOW_IMAGE_NAME="geaflow-arm"
CONSOLE_IMAGE_NAME="geaflow-console-arm"
else
- echo -e "\033[31munknown arch $ARCH, only support x86_64,arm64\033[0m"
+ echo -e "\033[31munknown arch $ARCH, only support
x86_64,arm64,aarch64\033[0m"
exit 1
fi
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]