From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1B8pSj-0005fI-Cy for qemu-devel@nongnu.org; Wed, 31 Mar 2004 18:49:37 -0500 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1B8pNZ-0002uQ-B9 for qemu-devel@nongnu.org; Wed, 31 Mar 2004 18:44:52 -0500 Received: from [193.252.22.26] (helo=mwinf0503.wanadoo.fr) by monty-python.gnu.org with esmtp (Exim 4.30) id 1B8pNW-0002q3-Qa for qemu-devel@nongnu.org; Wed, 31 Mar 2004 18:44:14 -0500 Received: from bellard.org (ATuileries-112-1-2-182.w80-14.abo.wanadoo.fr [80.14.188.182]) by mwinf0503.wanadoo.fr (SMTP Server) with ESMTP id A19CF6800255 for ; Thu, 1 Apr 2004 01:44:10 +0200 (CEST) Message-ID: <406B5836.7020503@bellard.org> Date: Thu, 01 Apr 2004 01:45:58 +0200 From: Fabrice Bellard MIME-Version: 1.0 References: <406B5612.5050701@bellard.org> In-Reply-To: <406B5612.5050701@bellard.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: QEMU News: Win32 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 Fabrice Bellard wrote: > Hi, > > I commited an experimental win32 port of QEMU. I did not test it yet, > but it compiles. It is based on Kazu port, but I made heavy > modifications to minimize the number of ifdefs and to factorize the > "dyngen" utility code. > > In order to compile it, look at > http://www.h7.dion.ne.jp/~qemu-win/PortingTips-en.html. I should not have given this URL because Cygwin is _not_ needed to compile QEMU. Instead use the following steps (taken from the FFmpeg project doc): * Install the current versions of MSYS and MinGW from http://www.mingw.org/. You can find detailed installation instructions in the download section and the FAQ. * Download the MinGW development library of SDL 1.2.x (SDL-devel-1.2.x-mingw32.tar.gz) from http://www.libsdl.org. Unpack it in a temporary place, and unpack the archive i386-mingw32msvc.tar.gz in the MinGW tool directory. Edit the sdl-config script so that it gives the correct SDL directory when invoked. * Extract the current CVS version of QEMU. * Start the MSYS shell (file 'msys.bat'). * Change to the QEMU directory and launch './configure' then 'make'. If you have problems using SDL, verify that 'sdl-config' can be launched from the MSYS command line. Fabrice.