From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mi0fE-0007QZ-Bv for qemu-devel@nongnu.org; Mon, 31 Aug 2009 02:46:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mi0f9-0007Nc-S2 for qemu-devel@nongnu.org; Mon, 31 Aug 2009 02:46:52 -0400 Received: from [199.232.76.173] (port=44692 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mi0f9-0007NW-PM for qemu-devel@nongnu.org; Mon, 31 Aug 2009 02:46:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25196) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mi0f9-0006oz-Am for qemu-devel@nongnu.org; Mon, 31 Aug 2009 02:46:47 -0400 Message-ID: <4A9B71C9.30108@redhat.com> Date: Mon, 31 Aug 2009 08:46:33 +0200 From: Gerd Hoffmann MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: OpenBSD/Sparc64 gcc doesn't know about __thread, so build breaks List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: qemu-devel On 08/29/09 18:41, Blue Swirl wrote: > Hi, > > I get this error on OpenBSD/Sparc64: > CC i386-softmmu/monitor.o > /src/qemu/monitor.c:3232: error: thread-local storage not supported > for this target > gmake[1]: *** [monitor.o] Error 1 > > Removing the offending __thread would fix the build. Ok, just kill it then. I thought it is an easy way to make it future-proof when qemu becomes more parallel. Right now we don't need it though: even with io thread enabled the qemu code is protected by one big lock, we don't have qemu code run truely parallel. cheers, Gerd