Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
#629: added aarch64 binaries to Linux installer and Android installer
Browse files Browse the repository at this point in the history
  • Loading branch information
hugbug committed Apr 20, 2019
1 parent d6e8f67 commit 3e0be12
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions linux/build-nzbget
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of nzbget
#
# Copyright (C) 2015-2018 Andrey Prygunkov <hugbug@users.sourceforge.net>
# Copyright (C) 2015-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -25,7 +25,7 @@ set -o errexit
# Uncomment next line for debuging
#set -x

ALLTARGETS="dist i686 x86_64 armel armhf mipsel mipseb ppc6xx ppc500 x86_64-bsd i686-ndk armhf-ndk"
ALLTARGETS="dist i686 x86_64 armel armhf aarch64 mipsel mipseb ppc6xx ppc500 x86_64-bsd i686-ndk armhf-ndk aarch64-ndk"
ROOT=`pwd`
ROOTPATH=$PATH
OUTPUTDIR=$ROOT/output
Expand Down
4 changes: 2 additions & 2 deletions linux/build-unpack
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of nzbget. See <http://nzbget.net>.
#
# Copyright (C) 2015-2018 Andrey Prygunkov <hugbug@users.sourceforge.net>
# Copyright (C) 2015-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -25,7 +25,7 @@ set -o errexit
# Uncomment next line for debuging
#set -x

ALLTARGETS="i686 x86_64 armel armhf mipsel mipseb ppc6xx ppc500 x86_64-bsd i686-ndk x86_64-ndk armhf-ndk aarch64-ndk"
ALLTARGETS="i686 x86_64 armel armhf aarch64 mipsel mipseb ppc6xx ppc500 x86_64-bsd i686-ndk x86_64-ndk armhf-ndk aarch64-ndk"
ROOT=`pwd`
OUTPUTDIR=$ROOT/setup
BUILDDIR=temp
Expand Down
6 changes: 5 additions & 1 deletion linux/installer.sh
Expand Up @@ -92,6 +92,7 @@ PrintHelp()
PrintArch "x86_64" " x86_64 - x86, 64 Bit"
PrintArch "armel" " armel - ARMv5/v6 (ARM9 and ARM11 families)"
PrintArch "armhf" " armhf - ARMv7/v8 (Cortex family)"
PrintArch "aarch64" " aarch64 - ARMv8, 64 Bit"
PrintArch "mipsel" " mipsel - MIPS (little endian)"
PrintArch "mipseb" " mipseb - MIPS (big endian)"
PrintArch "ppc6xx" " ppc6xx - PowerPC 6xx (603e series)"
Expand Down Expand Up @@ -188,9 +189,12 @@ DetectArch()
armv5*|armv6*|armel)
ARCH=armel
;;
armv7*|armv8*|aarch64)
armv7*|armv8*)
ARCH=armhf
;;
aarch64)
ARCH=aarch64
;;
ppc)
ARCH=ppcx
;;
Expand Down

0 comments on commit 3e0be12

Please sign in to comment.