From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 27 01:09:29 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3090B16A4CE; Sun, 27 Jun 2004 01:09:29 +0000 (GMT) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA50343D49; Sun, 27 Jun 2004 01:09:28 +0000 (GMT) (envelope-from johnmary@adelphia.net) Received: from 68-169-191-75.losaca.adelphia.net ([68.169.191.75]) by mta11.adelphia.netESMTP <20040627010925.WHPK13168.mta11.adelphia.net@68-169-191-75.losaca.adelphia.net>; Sat, 26 Jun 2004 21:09:25 -0400 Received: by 68-169-191-75.losaca.adelphia.net (Postfix, from userid 1001) id 933856899; Sat, 26 Jun 2004 18:09:24 -0700 (PDT) Date: Sat, 26 Jun 2004 18:09:24 -0700 From: John Merryweather Cooper To: Julian Elischer Message-ID: <20040627010924.GA43391@borgdemon.losaca.adelphia.net> References: <20040626231720.GB11573@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Phone: 1-509-338-9391 WWW-Home-Page: http://www.borgsdemons.com/ cc: freebsd-current@freebsd.org cc: freebsd-gnome@freebsd.org Subject: Re: Does -CURRENT's gcc generate ___tls_get_addr under any X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jun 2004 01:09:29 -0000 On Sat, Jun 26, 2004 at 04:39:33PM -0700, Julian Elischer wrote: > > > On Sat, 26 Jun 2004, David O'Brien wrote: > > > On Fri, Jun 25, 2004 at 02:15:04PM -0700, Julian Elischer wrote: > > > On Fri, 25 Jun 2004, Joe Marcus Clarke wrote: > > > > On Fri, 2004-06-25 at 16:44, John Merryweather Cooper wrote: > > > > > I'm working on porting (and getting fully working) lang/mono > > > > > version 0.96, and I'm having a problem. In one of my object > > > > > files--mini.lo--I'm getting an extern reference to > > > > > ___tls_get_addr. I've been over the source code in mini.c > > ... > > > TLS is coming.. it's just not here yet.. > > > > By whom? I've done the part I committed to. Yet I've heard nothing else > > about TLS in the two weeks after it was possible to start work on the > > next part. > > Doug Rabson has partly working TLS in p4 and last I heard was awaiting > some comments from the nvidia people who would be our first users of > TLS. > > > > > > > -- > > -- David (obrien@FreeBSD.org) > > > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > Well, I've managed to figure out my ___tls_get_addr problem. It appears to act as a result of those features of TLS currently implemented into the compiler and a configure test for the "new pthread library" or nptl for short. The configure script detects the ability to use __thread to declare thread-local variables and determines from this that nptl should be used. Of course, we're not ready for nptl, so --with-nptl=no needs to be set to override what the tests determine. jmc