Mon Jan 21 00:21:48 2019 UTC ()
Build bpfjit and sljit modules on aarch64.


(alnsn)
diff -r1.214 -r1.215 src/sys/modules/Makefile

cvs diff -r1.214 -r1.215 src/sys/modules/Makefile (expand / switch to unified diff)

--- src/sys/modules/Makefile 2018/12/19 13:57:52 1.214
+++ src/sys/modules/Makefile 2019/01/21 00:21:48 1.215
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.214 2018/12/19 13:57:52 maxv Exp $ 1# $NetBSD: Makefile,v 1.215 2019/01/21 00:21:48 alnsn Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4 4
5# For all platforms 5# For all platforms
6 6
7SUBDIR= accf_dataready 7SUBDIR= accf_dataready
8SUBDIR+= accf_httpready 8SUBDIR+= accf_httpready
9SUBDIR+= adosfs 9SUBDIR+= adosfs
10SUBDIR+= aio 10SUBDIR+= aio
11SUBDIR+= audio 11SUBDIR+= audio
12SUBDIR+= autofs 12SUBDIR+= autofs
13SUBDIR+= blowfish 13SUBDIR+= blowfish
14SUBDIR+= bpf 14SUBDIR+= bpf
@@ -202,30 +202,31 @@ SUBDIR+= tprof_x86 @@ -202,30 +202,31 @@ SUBDIR+= tprof_x86
202SUBDIR+= vmt 202SUBDIR+= vmt
203.endif 203.endif
204 204
205.if ${MACHINE_ARCH} == "x86_64" 205.if ${MACHINE_ARCH} == "x86_64"
206SUBDIR+= nvmm 206SUBDIR+= nvmm
207.endif 207.endif
208 208
209.if ${MACHINE_ARCH} == "i386" || \ 209.if ${MACHINE_ARCH} == "i386" || \
210 ${MACHINE_ARCH} == "x86_64" 210 ${MACHINE_ARCH} == "x86_64"
211SUBDIR+= ubsec # Builds on architectures with PCI bus 211SUBDIR+= ubsec # Builds on architectures with PCI bus
212.endif 212.endif
213 213
214.if ${MKSLJIT} != "no" 214.if ${MKSLJIT} != "no"
215# No modules for arm, mips and powerpc yet. 215# No modules for 32-bit arm, mips and powerpc yet.
216.if ${MACHINE_ARCH} == "i386" || \ 216.if ${MACHINE_ARCH} == "aarch64" || \
217 ${MACHINE_ARCH} == "x86_64" || \ 217 ${MACHINE_ARCH} == "i386" || \
218 ${MACHINE_ARCH} == "sparc" 218 ${MACHINE_ARCH} == "sparc" || \
 219 ${MACHINE_ARCH} == "x86_64"
219SUBDIR+= bpfjit 220SUBDIR+= bpfjit
220SUBDIR+= sljit 221SUBDIR+= sljit
221.endif 222.endif
222.endif 223.endif
223 224
224# 225#
225# ACPI modules 226# ACPI modules
226# 227#
227.if ${MACHINE_ARCH} == "i386" || \ 228.if ${MACHINE_ARCH} == "i386" || \
228 ${MACHINE_ARCH} == "ia64" || \ 229 ${MACHINE_ARCH} == "ia64" || \
229 ${MACHINE_ARCH} == "x86_64" 230 ${MACHINE_ARCH} == "x86_64"
230SUBDIR+= acpiverbose 231SUBDIR+= acpiverbose
231.endif 232.endif