Module Name: src
Committed By: christos
Date: Mon Jul 16 00:33:00 UTC 2018
Modified Files:
src/compat: archdirs.mk
Log Message:
gcc aarch64 does not have multilib
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/compat/archdirs.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/compat/archdirs.mk
diff -u src/compat/archdirs.mk:1.10 src/compat/archdirs.mk:1.11
--- src/compat/archdirs.mk:1.10 Wed May 27 11:35:23 2015
+++ src/compat/archdirs.mk Sun Jul 15 20:33:00 2018
@@ -1,4 +1,4 @@
-# $NetBSD: archdirs.mk,v 1.10 2015/05/27 15:35:23 matt Exp $
+# $NetBSD: archdirs.mk,v 1.11 2018/07/16 00:33:00 christos Exp $
# list of subdirs used per-platform
@@ -26,6 +26,7 @@ ARCHDIR_SUBDIR= powerpc64/powerpc
ARCHDIR_SUBDIR= riscv64/rv32
.endif
+.if ${ACTIVE_CC} == "clang"
.if (${MACHINE_ARCH} == "aarch64")
ARCHDIR_SUBDIR+= arm/eabi
ARCHDIR_SUBDIR+= arm/eabihf
@@ -33,3 +34,4 @@ ARCHDIR_SUBDIR+= arm/oabi
.elif (${MACHINE_ARCH} == "aarch64eb")
ARCHDIR_SUBDIR= arm/eabi
.endif
+.endif