From e6142ef5581e7ddd9f4c684b7dce6ef154bcba9d Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 11 Mar 2016 13:09:47 +0100 Subject: Support for aarch64 (nw) --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index fabd136bb5e..2c0b4a0d231 100644 --- a/makefile +++ b/makefile @@ -136,6 +136,12 @@ endif ifneq ($(filter arm%,$(UNAME_P)),) PLATFORM := arm endif +ifneq ($(filter aarch64%,$(UNAME_M)),) +PLATFORM := arm64 +endif +ifneq ($(filter aarch64%,$(UNAME_P)),) +PLATFORM := arm64 +endif ifneq ($(filter powerpc,$(UNAME_P)),) PLATFORM := powerpc endif @@ -279,6 +285,13 @@ ifndef NOASM endif endif +ifeq ($(findstring aarch64,$(UNAME)),aarch64) +ARCHITECTURE := +ifndef NOASM + NOASM := 1 +endif +endif + # Emscripten ifeq ($(findstring emcc,$(CC)),emcc) TARGETOS := asmjs -- cgit v1.2.3