From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bh1e8-000413-IR for qemu-devel@nongnu.org; Sun, 04 Jul 2004 03:42:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bh1e3-0003zT-6H for qemu-devel@nongnu.org; Sun, 04 Jul 2004 03:42:43 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bh1e2-0003x3-Ps for qemu-devel@nongnu.org; Sun, 04 Jul 2004 03:42:38 -0400 Received: from [80.91.224.249] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bh1bh-0003Ej-3L for qemu-devel@nongnu.org; Sun, 04 Jul 2004 03:40:13 -0400 Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1Bh1bg-0000sW-00 for ; Sun, 04 Jul 2004 09:40:12 +0200 Received: from 84-72-11-55.dclient.hispeed.ch ([84.72.11.55]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 04 Jul 2004 09:40:12 +0200 Received: from cwalther by 84-72-11-55.dclient.hispeed.ch with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 04 Jul 2004 09:40:12 +0200 From: Christian Walther Date: Sun, 04 Jul 2004 09:21:14 +0200 Message-ID: References: <00714252-CC7B-11D8-988D-000A2796D230@free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit In-Reply-To: <00714252-CC7B-11D8-988D-000A2796D230@free.fr> Sender: news Subject: [Qemu-devel] Re: [Patch] Mac OS X Port Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Wow! It works! And it even has networking! Cool! That's the moment I was hoping for when I started observing the qemu list some weeks ago... :) It also boots Windows 95, Windows 98 SE and the Mandrake Linux 10.0 installer. A few questions and remarks: o To make it compile, I had to make the following change to Makefile.target: add $(SDL_CFLAGS) to the %.o %.c rule. ($(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<) o Is PPC emulation supposed to work? When I try to compile it, I get the following: gcc -Wall -O2 -g -fno-strict-aliasing -D__powerpc__ -I. -I/Users/cwalther/Desktop/Incoming/qemu/qemu/target-ppc -I/Users/cwalther/Desktop/Incoming/qemu/qemu -D_GNU_SOURCE -I/Users/cwalther/Desktop/Incoming/qemu/qemu/slirp -I/sw/include/SDL -D_THREAD_SAFE -c -o translate.o /Users/cwalther/Desktop/Incoming/qemu/qemu/target-ppc/translate.c /var/tmp//ccfgCnLg.s:534:Expected comma after segment-name /var/tmp//ccfgCnLg.s:534:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//ccfgCnLg.s:662:Expected comma after segment-name /var/tmp//ccfgCnLg.s:662:Rest of line ignored. 1st junk character valued 32 ( ). [... 203 more of these ...] /var/tmp//ccfgCnLg.s:31194:Expected comma after segment-name /var/tmp//ccfgCnLg.s:31194:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//ccfgCnLg.s:31312:Expected comma after segment-name /var/tmp//ccfgCnLg.s:31312:Rest of line ignored. 1st junk character valued 32 ( ). make[1]: *** [translate.o] Error 1 make: *** [all] Error 1 myriad:qemu cwalther$ cc --version cc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1640) Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. o Is there a reason for the window to be resizable? When I tried resizing it, qemu just crashed. Thanks! -Christian