From owner-freebsd-current@FreeBSD.ORG Fri Jan 9 15:11:24 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 674DB10656F3 for ; Fri, 9 Jan 2009 15:11:24 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 46B948FC12 for ; Fri, 9 Jan 2009 15:11:24 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.3/8.14.3) with ESMTP id n09FBNho098118; Fri, 9 Jan 2009 07:11:23 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.3/8.14.3/Submit) id n09FBN8p098117; Fri, 9 Jan 2009 07:11:23 -0800 (PST) (envelope-from sgk) Date: Fri, 9 Jan 2009 07:11:23 -0800 From: Steve Kargl To: Ollivier Robert Message-ID: <20090109151123.GA97988@troutmask.apl.washington.edu> References: <49668763.8020705@mail.zedat.fu-berlin.de> <20090109002133.GA92874@troutmask.apl.washington.edu> <20090109084908.GA76970@keltia.freenix.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090109084908.GA76970@keltia.freenix.fr> User-Agent: Mutt/1.4.2.3i Cc: freebsd-current@freebsd.org Subject: Re: gcc 4.3: when will it become standard compiler? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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, 09 Jan 2009 15:11:25 -0000 On Fri, Jan 09, 2009 at 09:49:11AM +0100, Ollivier Robert wrote: > According to Steve Kargl: > > Probably not for a very long time. gcc 4.3 requires both GMP and > > MPFR libraries. Neither library is in src. > > I do not know what MPFR is (something about FP, right?) but I wonder at why > GMP could be needed by a compiler... > http://www.mpfr.org/ The MPFR library is a C library for multiple-precision floating-point computations with correct rounding. It's used for constant folding. -- Steve