mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +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
|
||||
ifeq ($(ARCH),s390x)
|
||||
LIB=lib64
|
||||
else
|
||||
ifeq ($(ARCH),aarch64)
|
||||
LIB=lib64
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -205,6 +205,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define ARCH_STRING "sparc"
|
||||
#elif defined __arm__
|
||||
#define ARCH_STRING "arm"
|
||||
#elif defined __aarch64__
|
||||
#define ARCH_STRING "aarch64"
|
||||
#elif defined __cris__
|
||||
#define ARCH_STRING "cris"
|
||||
#elif defined __hppa__
|
||||
|
|
Loading…
Reference in a new issue