Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jun 2011 00:19:20 -0400 (EDT)
From:      Benjamin Kaduk <kaduk@MIT.EDU>
To:        Eric McCorkle <eric@shadowsun.net>
Cc:        freebsd-current@freebsd.org
Subject:   Re: Clang buildworld failure due to multiple definitions of __isnanf
Message-ID:  <alpine.GSO.1.10.1106280006340.6818@multics.mit.edu>
In-Reply-To: <4E08A8DB.2020805@shadowsun.net>
References:  <4E07EBA2.70500@shadowsun.net> <4E08778D.2050302@FreeBSD.org> <4E08A8DB.2020805@shadowsun.net>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 27 Jun 2011, Eric McCorkle wrote:

> make.conf:
> CPUTYPE?=core2
> .if !defined(CC) || ${CC} == "cc"
> CC=clang
> CFLAGS=-Qunused-arguments
> .endif
> .if !defined(CXX) || ${CXX} == "c++"
> CXX=clang++
> .endif
> NO_WERROR=
> WERROR=
> NO_FSCHG=
> PERL_VERSION=5.12.3
>
> Just noticed, the CFLAGS would disable optimization, which would explain why 
> no one else seems to see this.  Still, I think the underlying issue warrants 
> investigation.

I seem to recall that our gcc-4.2 with -O0 is known to be buggy -- 
certainly I just tripped over a panic in a third-party kernel module build 
using bsd.kmod.mk with -O0 that was fixed by compiling the object in 
question with -O.
It is not terribly easy to search for, but my archives find at least 
http://lists.freebsd.org/pipermail/freebsd-current/2007-August/076028.html

I would try with -O1 and confirm that your issues go away, and not spend 
time on the core issue if it proves to be a gcc bug.

Unfortunately, we are stuck with an old gcc in base ... though I have yet 
to see if clang -O0 has issues with my module.

-Ben Kaduk



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?alpine.GSO.1.10.1106280006340.6818>