From owner-freebsd-sparc64@FreeBSD.ORG Fri Sep 1 23:44:34 2006 Return-Path: X-Original-To: sparc64@freebsd.org Delivered-To: freebsd-sparc64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D42316A4DF for ; Fri, 1 Sep 2006 23:44:34 +0000 (UTC) (envelope-from kmacy@fsmware.com) Received: from demos.bsdclusters.com (demos.bsdclusters.com [69.55.225.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 475D343D45 for ; Fri, 1 Sep 2006 23:44:34 +0000 (GMT) (envelope-from kmacy@fsmware.com) Received: from demos.bsdclusters.com (demos [69.55.225.36]) by demos.bsdclusters.com (8.12.8p1/8.12.8) with ESMTP id k81NiYlZ048777; Fri, 1 Sep 2006 16:44:34 -0700 (PDT) (envelope-from kmacy@fsmware.com) Received: from localhost (kmacy@localhost) by demos.bsdclusters.com (8.12.8p1/8.12.8/Submit) with ESMTP id k81NiYAB048774; Fri, 1 Sep 2006 16:44:34 -0700 (PDT) X-Authentication-Warning: demos.bsdclusters.com: kmacy owned process doing -bs Date: Fri, 1 Sep 2006 16:44:33 -0700 (PDT) From: Kip Macy X-X-Sender: kmacy@demos.bsdclusters.com To: Marcel Moolenaar In-Reply-To: <6FFF8FD6-699A-4A85-8FC6-BD1CE8108BD8@mac.com> Message-ID: <20060901164402.H47808@demos.bsdclusters.com> References: <80928ADC-9063-4FD2-90C7-6E87D7041617@mac.com> <20060901145900.B97855@demos.bsdclusters.com> <6FFF8FD6-699A-4A85-8FC6-BD1CE8108BD8@mac.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: sparc64@freebsd.org Subject: Re: Thread Local Storage X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 23:44:34 -0000 Yep. I guess jb@ and I should start the maintainer timeout tonight. -Kip On Fri, 1 Sep 2006, Marcel Moolenaar wrote: > > On Sep 1, 2006, at 3:01 PM, Kip Macy wrote: > > > To the best of my knowledge no one is currently working on it. I think > > we're still waiting on an import of a more recent binutils which adds > > sun4v and TLS support. > > > > What else is missing? Thanks. > > Hmmm, I didn't realize is was quite that bad: > > \begin{verbatim} > u2% more tls.c > #include > > int __thread i = 4; > > int > main() > { > printf("%d\n", i); > return (0); > } > \end{verbatim} > > u2% cc -o tls tls.c > /usr/bin/ld: /var/tmp//ccDb7raY.o: check_relocs: unhandled reloc type 72 > /var/tmp//ccDb7raY.o: could not read symbols: File format not recognized > > :-/ > > -- > Marcel Moolenaar > xcllnt@mac.com > > >