From c818cdd02e633658512b7f4e17f1c6fb6626e743 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Mon, 22 May 2023 21:34:38 +0900 Subject: [PATCH] linux arm build sh --- buildapp/build_app_linux_arm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildapp/build_app_linux_arm.sh b/buildapp/build_app_linux_arm.sh index fd30bf2..02e2f21 100755 --- a/buildapp/build_app_linux_arm.sh +++ b/buildapp/build_app_linux_arm.sh @@ -24,7 +24,7 @@ cp -r "../out/$RUNTIME" $DESTDIR/ cp -r "../out/TerranBASIC.jar" $DESTDIR/ # Pack everything to AppImage -"./$APPIMAGETOOL" $DESTDIR "out/$DESTDIR.AppImage" || { echo 'Building AppImage failed' >&2; exit 1; } +ARCH=arm_aarch64 "./$APPIMAGETOOL" $DESTDIR "out/$DESTDIR.AppImage" || { echo 'Building AppImage failed' >&2; exit 1; } chmod +x "out/$DESTDIR.AppImage" rm -rf $DESTDIR || true echo "Build successful: $DESTDIR"