Skip to content

Commit

Permalink
Add support for Aarch64 (ARM64)
Browse files Browse the repository at this point in the history
Add support for Aarch64, the 64-bit ARM architecture.
  • Loading branch information
tbm committed Jun 30, 2015
1 parent 6d62dc3 commit ebb69f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions code/qcommon/q_platform.h
Expand Up @@ -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__
Expand Down

0 comments on commit ebb69f6

Please sign in to comment.