From 2b36317ff77d26f817308213eaa983ba6a35fa7d Mon Sep 17 00:00:00 2001 From: rin Date: Tue, 17 Nov 2020 10:47:17 +0000 Subject: [PATCH] Support aarch64eb; just works fine. --- usr.sbin/tprof/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/tprof/Makefile b/usr.sbin/tprof/Makefile index e63a81e5b8d0..1745838946ab 100644 --- a/usr.sbin/tprof/Makefile +++ b/usr.sbin/tprof/Makefile @@ -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