Module Name: src
Committed By: rin
Date: Tue Nov 17 10:47:17 UTC 2020
Modified Files:
src/usr.sbin/tprof: Makefile
Log Message:
Support aarch64eb; just works fine.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/tprof/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/tprof/Makefile
diff -u src/usr.sbin/tprof/Makefile:1.9 src/usr.sbin/tprof/Makefile:1.10
--- src/usr.sbin/tprof/Makefile:1.9 Sun Jan 27 05:12:30 2019
+++ src/usr.sbin/tprof/Makefile Tue Nov 17 10:47:17 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2019/01/27 05:12:30 kre Exp $
+# $NetBSD: Makefile,v 1.10 2020/11/17 10:47:17 rin Exp $
.PATH: ${.CURDIR}/arch
@@ -10,7 +10,7 @@ SRCS= tprof.c tprof_analyze.c
SRCS+= tprof_x86.c
.elif !empty(MACHINE_ARCH:M*armv7*)
SRCS+= tprof_armv7.c
-.elif ${MACHINE_ARCH} == "aarch64"
+.elif !empty(MACHINE_ARCH:Maarch64*)
SRCS+= tprof_armv8.c
.else
SRCS+= tprof_noarch.c