From owner-freebsd-current@FreeBSD.ORG Fri Nov 2 15:38:30 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78246162; Fri, 2 Nov 2012 15:38:30 +0000 (UTC) (envelope-from rdivacky@vlakno.cz) Received: from vlakno.cz (mail.vlakno.cz [178.238.39.38]) by mx1.freebsd.org (Postfix) with ESMTP id 35FE38FC08; Fri, 2 Nov 2012 15:38:29 +0000 (UTC) Received: by vlakno.cz (Postfix, from userid 1002) id B8BC21CC5697; Fri, 2 Nov 2012 16:30:50 +0100 (CET) Date: Fri, 2 Nov 2012 16:30:50 +0100 From: Roman Divacky To: Brooks Davis Subject: Re: November 5th is Clang-Day Message-ID: <20121102153050.GA44876@freebsd.org> References: <20121102032945.GF65074@lor.one-eyed-alien.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121102032945.GF65074@lor.one-eyed-alien.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Nov 2012 15:38:30 -0000 Nice :) Does this deserve mentioning in UPDATING and/or version bump? On Thu, Nov 01, 2012 at 10:29:45PM -0500, Brooks Davis wrote: > On Monday, November 5th I plan to commit the following patch to make > clang the default compiler on i386 and amd64. Many people have worked > long and hard to make this a reality and we're finally close enough to > throw the switch. For many users the transition should be transparent. > Others will likely hit some bumps, but I think we've addresses most > major issues at this point and the LLVM community has demonstrated it's > ability and willingness to help given actionable bug reports. > > Known Issues > - Not all ports compile with clang. This can be worked around in > individual ports by setting USE_GCC=any which will cause the base gcc > to be used. Depending how things shake out we may end up making > USE_GCC=any the default for a period. [0] > - Not all libm tests pass. More work by subject matter experts is > required to create tests cases for LLVM developers. Most problems are > not expected to be major in practice given that LLVM is being used for > scientific computing in a number of products including Cray's FORTRAN > compiler, most OpenCL compilers, and the Julia language. > - Small but noticeable slowdown in some benchmarks. For example > sysbench against mysql was found to run about 1% slower on top of a > clang compiled world+kernel. http://people.freebsd.org/~flo/perf.pdf > > Known Non-Issues > - "make buildenv" works fine with clang. > > -- Brooks > > [0] Work is underway to switch to building ports with a ports specific > compiler version. Likely this will be gcc-4.6 initially. This would > help insulate ports from the base compiler. That being said, there are > significant advantages to getting as many ports as possible to build > with clang. Among other things, cross building for embedded systems is > much easier with clang. > > > Index: share/mk/bsd.own.mk > =================================================================== > --- share/mk/bsd.own.mk (revision 242464) > +++ share/mk/bsd.own.mk (working copy) > @@ -426,7 +426,6 @@ > BIND_XML \ > BSDCONFIG \ > CLANG_EXTRAS \ > - CLANG_IS_CC \ > CTF \ > HESIOD \ > ICONV \ > @@ -455,6 +454,12 @@ > .else > __DEFAULT_NO_OPTIONS+=CLANG > .endif > +# Clang the default system compiler only on x86. > +.if ${__T} == "amd64" || ${__T} == "i386" > +__DEFAULT_YES_OPTIONS+=CLANG_IS_CC > +.else > +__DEFAULT_NO_OPTIONS+=CLANG_IS_CC > +.endif > # FDT is needed only for arm, mips and powerpc > .if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*} > __DEFAULT_YES_OPTIONS+=FDT