add target: debian-arm64 (#6909)

pull/6985/head
Martín Fernández 3 years ago committed by GitHub
parent febb8e11a6
commit 3142f98e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -1 +1 @@
Subproject commit f0f781f712b65910513c15dbed18f965e44f549c
Subproject commit 5d2695b520977a48066043e8e1712cced90e0d15

12
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

Loading…
Cancel
Save