From 95ba9c0c252dbc8715f2a671b66a138b95c18ca3 Mon Sep 17 00:00:00 2001 From: alnsn Date: Mon, 21 Jan 2019 00:21:48 +0000 Subject: Build bpfjit and sljit modules on aarch64. --- sys/modules/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'sys/modules') diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 3378ce99ecf..f896b2e689d 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.214 2018/12/19 13:57:52 maxv Exp $ +# $NetBSD: Makefile,v 1.215 2019/01/21 00:21:48 alnsn Exp $ .include @@ -212,10 +212,11 @@ SUBDIR+= ubsec # Builds on architectures with PCI bus .endif .if ${MKSLJIT} != "no" -# No modules for arm, mips and powerpc yet. -.if ${MACHINE_ARCH} == "i386" || \ - ${MACHINE_ARCH} == "x86_64" || \ - ${MACHINE_ARCH} == "sparc" +# No modules for 32-bit arm, mips and powerpc yet. +.if ${MACHINE_ARCH} == "aarch64" || \ + ${MACHINE_ARCH} == "i386" || \ + ${MACHINE_ARCH} == "sparc" || \ + ${MACHINE_ARCH} == "x86_64" SUBDIR+= bpfjit SUBDIR+= sljit .endif -- cgit