On Tue, Jun 21, 2005 at 11:27:10AM -0500, [EMAIL PROTECTED] wrote:
> I downloaded the libraries and devel files from the link Jernej Simoncic 
> recommended.  It does seem to be a main win gtk distrib location.  (As 
> somebody pointed out, actually building gtk etc. under Mingw is a pita.  I 
> haven't tried, but judging from all the stuff that would be needed to build 
> it, I suspect that's true.)
> 
> The unzip into the proper mingw directory structure.
> 
> I'm using the versions recommended and distributed on 
> http://www.gimp.org/~tml/gimp/win32/
> 
> I get the same error regardless whether I'm using the recommended version or 
> the bleeding edge version.
> 
> I'm just downloading the pre-built devel libraries.

That would explain the error. The pre-build devel libraries would have 
-mms-bitfields
set (in order to ensure compatibility).

Attached is a simple Makefile.target patch that will turn that option on when
building qemu on Windows. Just apply the patch, reconfigure, and rebuild qemu.

-- 
Infinite complexity begets infinite beauty.
Infinite precision begets infinite perfection.
--- Makefile.target.old Tue Jun 21 15:42:52 2005
+++ Makefile.target     Tue Jun 21 15:44:17 2005
@@ -211,6 +211,10 @@
 
 #########################################################
 
+ifdef CONFIG_WIN32
+CFLAGS+=-mms-bitfields
+endif
+
 DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
 LIBS+=-lm
 ifndef CONFIG_USER_ONLY
_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to