summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2019-01-24 18:40:56 +0000
committertnn <tnn@pkgsrc.org>2019-01-24 18:40:56 +0000
commita41e93ff6b5b9a6719154aa2c270a9339fdc5ec0 (patch)
tree8fcba57a6d36cd85313d8f13c8f01d548472b75e
parent75f85885bd545ff352d0f54f897aaac7e1023556 (diff)
downloadpkgsrc-a41e93ff6b5b9a6719154aa2c270a9339fdc5ec0.tar.gz
Linux.mk: provide default LIBABISUFFIX for aarch64
-rw-r--r--mk/platform/Linux.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/mk/platform/Linux.mk b/mk/platform/Linux.mk
index 17f87a5724e..4738da1f48a 100644
--- a/mk/platform/Linux.mk
+++ b/mk/platform/Linux.mk
@@ -1,4 +1,4 @@
-# $NetBSD: Linux.mk,v 1.79 2019/01/09 13:19:03 wiz Exp $
+# $NetBSD: Linux.mk,v 1.80 2019/01/24 18:40:56 tnn Exp $
#
# Variable definitions for the Linux operating system.
@@ -153,6 +153,12 @@ ABI?= 64
LIBABISUFFIX?= 64
.endif
+.if ${MACHINE_ARCH} == "aarch64"
+# No toolchain multilib support yet?
+# ABI?= 64
+LIBABISUFFIX?= 64
+.endif
+
# When building 32-bit packages on x86_64 GNU ld isn't smart enough to
# figure out the target architecture based on the objects so we need to
# explicitly set it.