From owner-svn-src-head@FreeBSD.ORG Tue Dec 22 20:33:58 2009 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A70D106568B; Tue, 22 Dec 2009 20:33:58 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 04BE18FC17; Tue, 22 Dec 2009 20:33:57 +0000 (UTC) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.3/8.14.3/ALCHEMY.FRANKEN.DE) with ESMTP id nBMKXo7L007288; Tue, 22 Dec 2009 21:33:51 +0100 (CET) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.3/8.14.3/Submit) id nBMKXocV007287; Tue, 22 Dec 2009 21:33:50 +0100 (CET) (envelope-from marius) Date: Tue, 22 Dec 2009 21:33:50 +0100 From: Marius Strobl To: Roman Divacky Message-ID: <20091222203350.GE74529@alchemy.franken.de> References: <200912211943.nBLJhNUU038425@svn.freebsd.org> <200912211459.21766.jhb@freebsd.org> <20091221220004.GA42400@alchemy.franken.de> <20091221.211648.632868945383134253.imp@bsdimp.com> <20091222141810.GA17221@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091222141810.GA17221@freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, jhb@FreeBSD.org, "M. Warner Losh" Subject: Re: svn commit: r200797 - head/lib/libc/stdtime X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2009 20:33:58 -0000 On Tue, Dec 22, 2009 at 03:18:11PM +0100, Roman Divacky wrote: > On Mon, Dec 21, 2009 at 09:16:48PM -0700, M. Warner Losh wrote: > > In message: <20091221220004.GA42400@alchemy.franken.de> > > Marius Strobl writes: > > : On Mon, Dec 21, 2009 at 02:59:21PM -0500, John Baldwin wrote: > > : > On Monday 21 December 2009 2:43:23 pm John Baldwin wrote: > > : > > Author: jhb > > : > > Date: Mon Dec 21 19:43:23 2009 > > : > > New Revision: 200797 > > : > > URL: http://svn.freebsd.org/changeset/base/200797 > > : > > > > : > > Log: > > : > > Use _once() to initialize the pthread key for thread-local storage to hold > > : > > the results of localtime() instead of using a pthread mutex directly. > > : > > > : > It would probably be simpler to use TLS for this instead, but I'm not sure if > > : > we have working TLS on all supported platforms. > > : > > > : > > : At least not on arm and sparc64 as the in-tree binutils predate > > : GNU TLS support for these. > > > > We really need newer binutils in the tree. > > > > And we need a way to compiler gplv3 binutils into the system for folks > > that can do that without consequences... But many modern processors > > need to have the gplv3 version of binutils and that will be a > > continuing problem. One advantage of FreeBSD is its integration, > > rather than having to play version whack-a-mole like you do with > > embedded Linux. > > well... llvm provides its own assembler so if the need for newer binutils > comes from need of newer as I believe llvm can help here. or is the linker > the problem? Assuming LLVM properly supports the architecture in the first place ... Marius