Module Name: src
Committed By: matt
Date: Sun Aug 10 23:40:33 UTC 2014
Modified Files:
src/compat: archdirs.mk
Log Message:
Add compat dirs for aarch64
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 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.4 src/compat/archdirs.mk:1.5
--- src/compat/archdirs.mk:1.4 Fri Mar 7 04:16:25 2014
+++ src/compat/archdirs.mk Sun Aug 10 23:40:33 2014
@@ -1,4 +1,4 @@
-# $NetBSD: archdirs.mk,v 1.4 2014/03/07 04:16:25 matt Exp $
+# $NetBSD: archdirs.mk,v 1.5 2014/08/10 23:40:33 matt Exp $
# list of subdirs used per-platform
@@ -29,3 +29,11 @@ ARCHDIR_SUBDIR= mips64/64 mips64/o32
.if ${MACHINE_ARCH} == "powerpc64"
ARCHDIR_SUBDIR= powerpc64/powerpc
.endif
+
+.if (${MACHINE_ARCH} == "aarch64")
+ARCHDIR_SUBDIR+= arm/eabi
+#ARCHDIR_SUBDIR+= arm/eabihf
+ARCHDIR_SUBDIR+= arm/oabi
+.else if (${MACHINE_ARCH} == "aarch64eb")
+ARCHDIR_SUBDIR= arm/eabi
+.endif