From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEar8-000609-JL for qemu-devel@nongnu.org; Wed, 28 Aug 2013 04:12:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VEar1-0003rS-8r for qemu-devel@nongnu.org; Wed, 28 Aug 2013 04:11:58 -0400 Received: from mail-ea0-f175.google.com ([209.85.215.175]:46834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEar0-0003qy-0A for qemu-devel@nongnu.org; Wed, 28 Aug 2013 04:11:51 -0400 Received: by mail-ea0-f175.google.com with SMTP id m14so2728990eaj.20 for ; Wed, 28 Aug 2013 01:11:34 -0700 (PDT) Date: Wed, 28 Aug 2013 10:11:30 +0200 From: Stefan Hajnoczi Message-ID: <20130828081130.GE4696@stefanha-thinkpad.muc.redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] Problems with QEMU sdcard while using glib 2.33.8 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Taimoor Mirza Cc: qemu-devel On Wed, Aug 28, 2013 at 10:14:04AM +0500, Taimoor Mirza wrote: > I am building QEMU on Windows using MinGW + Msys. If I build QEMU with > Glib 2.28, qemu binary works fine for sdcard. I noticed that QEMU > binary has dependency on libgthread-2.0-0.dll in this case. > But when I build QEMU with Glib 2.33.8 version, its sdcard option > throw error at run time. Also generated QEMU binary has no dependency > on gthread DLL. > Below is the error thrown while using -sd: > > vvfat C:\qemu_arm_win32\sdcard\files chs 1024,16,63 > Co-routine is yielding to no one What is the output of: $ grep CONFIG_COROUTINE_BACKEND config-host.mak On Windows it should be "win32". Can you capture a backtrace using gdb? $ gdb --args qemu-system-arm.exe ... (gdb) r Co-routine is yielding to no one (gdb) bt Stefan