add target: debian-arm64 (#6909)

This commit is contained in:
Martín Fernández
2020-12-11 23:22:00 +01:00
committed by GitHub
parent febb8e11a6
commit 3142f98e20
3 changed files with 16 additions and 1 deletions

View File

@@ -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)

2
base

Submodule base updated: f0f781f712...5d2695b520

12
kodev
View File

@@ -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