mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 07:57:23 +00:00
Merge pull request #128 from tbm/master
Add support for Aarch64 (ARM64)
This commit is contained in:
commit
59539296e9
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