summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Michlmayr <tbm@cyrius.com>2015-06-30 14:22:49 -0400
committerTim Angus <tim@ngus.net>2016-04-07 11:02:29 +0100
commit657a3a4a11381deaff4f9328e16a7b3f3217fa21 (patch)
treea3b1ecd8e0c311437cb4e22c2806245402243117 /Makefile
parentf2b5400e983a4cf20da96783908a0a825e9f60c6 (diff)
Add support for Aarch64 (ARM64)
Add support for Aarch64, the 64-bit ARM architecture.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6876a392..e4f042f4 100644
--- a/Makefile
+++ b/Makefile
@@ -322,6 +322,10 @@ ifneq (,$(findstring "$(PLATFORM)", "linux" "gnu_kfreebsd" "kfreebsd-gnu" "gnu")
else
ifeq ($(ARCH),s390x)
LIB=lib64
+ else
+ ifeq ($(ARCH),aarch64)
+ LIB=lib64
+ endif
endif
endif
endif