From 3142f98e2078190de38b818b5936016df51fdc41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Fern=C3=A1ndez?= Date: Fri, 11 Dec 2020 23:22:00 +0100 Subject: [PATCH] add target: debian-arm64 (#6909) --- Makefile | 3 +++ base | 2 +- kodev | 12 ++++++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 754220466..453757efc 100644 --- a/Makefile +++ b/Makefile @@ -552,6 +552,9 @@ else ifeq ($(TARGET), debian-armel) else ifeq ($(TARGET), debian-armhf) make debianupdate $(CURDIR)/platform/debian/do_debian_package.sh $(INSTALL_DIR) armhf +else ifeq ($(TARGET), debian-arm64) + make debianupdate + $(CURDIR)/platform/debian/do_debian_package.sh $(INSTALL_DIR) arm64 else ifeq ($(TARGET), macos) make macosupdate $(CURDIR)/platform/mac/do_mac_bundle.sh $(INSTALL_DIR) diff --git a/base b/base index f0f781f71..5d2695b52 160000 --- a/base +++ b/base @@ -1 +1 @@ -Subproject commit f0f781f712b65910513c15dbed18f965e44f549c +Subproject commit 5d2695b520977a48066043e8e1712cced90e0d15 diff --git a/kodev b/kodev index d7dbd4c98..85a201aec 100755 --- a/kodev +++ b/kodev @@ -162,6 +162,7 @@ SUPPORTED_TARGETS=" debian Debian package for current arch debian-armel Debian package for generic armel devices debian-armhf Debian package for generic armhf devices + debian-arm64 Debian package for generic 64 bits arm devices macos MacOS app bundle. You need a mac to build this package emu (*default) If no TARGET is given, assume emulator win32 @@ -281,6 +282,10 @@ ${SUPPORTED_TARGETS}" make TARGET=debian-armhf assert_ret_zero $? ;; + debian-arm64) + make TARGET=debian-arm64 + assert_ret_zero $? + ;; macos) is_mac make TARGET=macos @@ -378,6 +383,9 @@ ${SUPPORTED_TARGETS}" debian-armhf) make TARGET=debian-armhf clean ;; + debian-arm64) + make TARGET=debian-arm64 clean + ;; macos) is_mac make TARGET=macos clean @@ -515,6 +523,10 @@ ${SUPPORTED_RELEASE_TARGETS}" kodev-build debian-armhf make TARGET=debian-armhf update ;; + debian-arm64) + kodev-build debian-arm64 + make TARGET=debian-arm64 update + ;; macos) is_mac kodev-build macos