Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Dec 2010 20:17:37 +0100
From:      Dimitry Andric <dim@FreeBSD.org>
To:        Alexander Best <arundel@freebsd.org>
Cc:        freebsd-toolchain@freebsd.org
Subject:   Re: clang and -mfpmath=387 on ARCH=amd64
Message-ID:  <4D051FD1.7070100@FreeBSD.org>
In-Reply-To: <20101211114707.GA60390@freebsd.org>
References:  <20101211114707.GA60390@freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 2010-12-11 12:47, Alexander Best wrote:
> clang doesn't seem to make use of -mfpmath=387 on ARCH=amd64 and complains
> about it (e.g. during TARGET=buildkernel).
>
> any thoughts about the attached patch?

I have compiled two GENERIC kernels on amd64 with and without the
-mfpmath=386 option, and those resulted in exactly the same binaries
(apart from the compilation timestamp).

So I think the whole -mfpmath=387 option is nonsensical anyway.  The
comment just above those CFLAGS in sys/conf/kern.mk says:

# For AMD64, we explicitly prohibit the use of FPU, SSE and other SIMD
# operations inside the kernel itself.  These operations are exclusively
# reserved for user applications.

However, according to the gcc manual, the -mfpmath option does *not*
disable FPU instructions at all, but simply switches the default (for
amd64) from SSE to 387 instructions:

http://gcc.gnu.org/onlinedocs/gcc-4.2.4/gcc/i386-and-x86_002d64-Options.html#index-march-1052

Since -mno-sse is already specified, this flag may actually be worse
than not specifying it at all! :)

I suggest to just remove the entire -mfpmath=387 option unconditionally.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4D051FD1.7070100>