Source-Changes-D archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: src/sys/rump/kern
Martin Husemann wrote:
> Log Message:
> sljit is only available on very few architectures, so do not try to build
> it on all.
We have a special MKSLJIT variable. It's enabled by default on the three
arches you listed below but it can also be turned on on arm and mips.
Alex
> To generate a diff of this commit:
> cvs rdiff -u -r1.6 -r1.7 src/sys/rump/kern/Makefile.rumpkerncomp
>
> Please note that diffs are not public domain; they are subject to the
> copyright notices on the relevant files.
>
> Modified files:
>
> Index: src/sys/rump/kern/Makefile.rumpkerncomp
> diff -u src/sys/rump/kern/Makefile.rumpkerncomp:1.6
> src/sys/rump/kern/Makefile.rumpkerncomp:1.7
> --- src/sys/rump/kern/Makefile.rumpkerncomp:1.6 Sat Nov 16 01:39:18 2013
> +++ src/sys/rump/kern/Makefile.rumpkerncomp Sat Nov 16 10:34:47 2013
> @@ -1,9 +1,15 @@
> -# $NetBSD: Makefile.rumpkerncomp,v 1.6 2013/11/16 01:39:18 rmind Exp $
> +# $NetBSD: Makefile.rumpkerncomp,v 1.7 2013/11/16 10:34:47 martin Exp $
> #
>
> .include <bsd.own.mk>
>
> -RUMPKERNCOMPS= crypto sljit tty z
> +RUMPKERNCOMPS= crypto tty z
> +
> +.if ${MACHINE_ARCH} == "i386" || \
> + ${MACHINE_ARCH} == "x86_64" || \
> + ${MACHINE_ARCH} == "sparc"
> +RUMPKERNCOMPS+= sljit
> +.endif
>
> .if ${MKZFS} != "no"
> RUMPKERNCOMPS+= solaris
>
--
Home |
Main Index |
Thread Index |
Old Index