svn commit: r276801 - head/sys/i386/i386

TAKAHASHI Yoshihiro nyan at FreeBSD.org
Thu Jan 8 14:14:40 UTC 2015


In article <201501080039.t080df3O011578 at svn.freebsd.org>
Warner Losh <imp at freebsd.org> writes:

> Author: imp
> Date: Thu Jan  8 00:39:40 2015
> New Revision: 276801
> URL: https://svnweb.freebsd.org/changeset/base/276801
> 
> Log:
>   Don't call the SSE routines when they aren't enabled (or even compiled
>   into the kernel).
> 
> +#if !defined(CPU_DISABLE_SSE) && defined(I686_CPU)
> +#define CPU_ENABLE_SSE
> +#endif

% grep CPU_DISABLE_SSE options.*
options.i386:CPU_DISABLE_SSE                    opt_cpu.h
options.pc98:CPU_DISABLE_SSE                    opt_cpu.h

So including opt_cpu.h is required.

---
TAKAHASHI Yoshihiro <nyan at FreeBSD.org>


More information about the svn-src-all mailing list