Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules Build bpfjit and sljit modules on aarch64.



details:   https://anonhg.NetBSD.org/src/rev/d8891c198869
branches:  trunk
changeset: 447670:d8891c198869
user:      alnsn <alnsn%NetBSD.org@localhost>
date:      Mon Jan 21 00:21:48 2019 +0000

description:
Build bpfjit and sljit modules on aarch64.

diffstat:

 sys/modules/Makefile |  11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diffs (25 lines):

diff -r cfa73b5eb3a2 -r d8891c198869 sys/modules/Makefile
--- a/sys/modules/Makefile      Mon Jan 21 00:07:10 2019 +0000
+++ b/sys/modules/Makefile      Mon Jan 21 00:21:48 2019 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index