mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-02-07 16:31:21 +00:00
Add support for Aarch64 (ARM64)
Add support for Aarch64, the 64-bit ARM architecture.
This commit is contained in:
parent
6d62dc3646
commit
ebb69f699c
2 changed files with 6 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -335,6 +335,10 @@ ifneq (,$(findstring "$(PLATFORM)", "linux" "gnu_kfreebsd" "kfreebsd-gnu"))
|
||||||
else
|
else
|
||||||
ifeq ($(ARCH),s390x)
|
ifeq ($(ARCH),s390x)
|
||||||
LIB=lib64
|
LIB=lib64
|
||||||
|
else
|
||||||
|
ifeq ($(ARCH),aarch64)
|
||||||
|
LIB=lib64
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -205,6 +205,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#define ARCH_STRING "sparc"
|
#define ARCH_STRING "sparc"
|
||||||
#elif defined __arm__
|
#elif defined __arm__
|
||||||
#define ARCH_STRING "arm"
|
#define ARCH_STRING "arm"
|
||||||
|
#elif defined __aarch64__
|
||||||
|
#define ARCH_STRING "aarch64"
|
||||||
#elif defined __cris__
|
#elif defined __cris__
|
||||||
#define ARCH_STRING "cris"
|
#define ARCH_STRING "cris"
|
||||||
#elif defined __hppa__
|
#elif defined __hppa__
|
||||||
|
|
Loading…
Reference in a new issue