Module Name: src
Committed By: alnsn
Date: Mon Jan 21 00:21:48 UTC 2019
Modified Files:
src/sys/modules: Makefile
Log Message:
Build bpfjit and sljit modules on aarch64.
To generate a diff of this commit:
cvs rdiff -u -r1.214 -r1.215 src/sys/modules/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/modules/Makefile
diff -u src/sys/modules/Makefile:1.214 src/sys/modules/Makefile:1.215
--- src/sys/modules/Makefile:1.214 Wed Dec 19 13:57:52 2018
+++ src/sys/modules/Makefile Mon Jan 21 00:21:48 2019
@@ -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 <bsd.own.mk>
@@ -212,10 +212,11 @@ SUBDIR+= ubsec # Builds on architecture
.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