From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35830) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qqp1k-0007f8-S4 for qemu-devel@nongnu.org; Tue, 09 Aug 2011 12:19:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qqp1f-0006Ic-UO for qemu-devel@nongnu.org; Tue, 09 Aug 2011 12:19:36 -0400 Received: from mail-wy0-f173.google.com ([74.125.82.173]:37098) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qqp1f-0006IY-Q0 for qemu-devel@nongnu.org; Tue, 09 Aug 2011 12:19:31 -0400 Received: by wyf22 with SMTP id 22so126456wyf.4 for ; Tue, 09 Aug 2011 09:19:30 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <4E415E10.7090404@redhat.com> Date: Tue, 09 Aug 2011 18:19:28 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <218A230B8DDA47E0A817DCF708EB073F@FSCPC> In-Reply-To: <218A230B8DDA47E0A817DCF708EB073F@FSCPC> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] coroutine-win32.c:36: error: thread-local storage not supported for this target List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sebastian Herbszt Cc: qemu-devel Developers On 08/09/2011 05:53 PM, Sebastian Herbszt wrote: > CC coroutine-win32.o > coroutine-win32.c:36: error: thread-local storage not supported for this > target > coroutine-win32.c:37: error: thread-local storage not supported for this > target > make: *** [coroutine-win32.o] Error 1 You need a newer GCC. Alternatively we can change it to use TlsAlloc/TlsFree, but I would like to support __thread-based TLS always (for example for liburcu---userspace RCU...). Paolo