From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbm4n-0004d5-IM for qemu-devel@nongnu.org; Tue, 05 Jun 2012 01:13:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sbm4l-00077T-Hc for qemu-devel@nongnu.org; Tue, 05 Jun 2012 01:13:05 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:54812) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbm4l-000773-BB for qemu-devel@nongnu.org; Tue, 05 Jun 2012 01:13:03 -0400 Message-ID: <4FCD955B.8070309@weilnetz.de> Date: Tue, 05 Jun 2012 07:12:59 +0200 From: Stefan Weil MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] Python problem using MinGW when build QEMU List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Arturo CV Cc: qemu-devel@nongnu.org Am 05.06.2012 01:42, schrieb Arturo CV: > Hello, > > Am trying to build the QEMU following this steps: > > http://qemu.weilnetz.de/qemu-doc.html#compilation > > I got most of the libraries dependencies and followed this other > guides that I found over the net: > > http://lassauge.free.fr/qemu/ > http://www.gaia-gis.it/spatialite-3.0.0-BETA/mingw_how_to.html > > I installed all the libraries that were asking for a good development > environment with the MinGW and MSYS, and then I tried to build the > QEMU image doing: > > ./configure > make&& make install > > The configure part went well after the dependencies were fix, but then > I tried the make command and the "python error" appeared. Apparently > there is missing the python installation in the MinGW environment so I > tried to installed following this steps: > > http://www.mingw.org/wiki/FAQ (How do I creat Python extensions?) > > It appears that this is the most common way to approach the python > missing error, but it doesn't work for me. I tried using the *.exe > Python installer and also installing it using the source code but > either way there is always errors during the "make" command, showing > errors like "undefined variables" and missing Python interpreters. > > I don't know what else to try to get the python working with the MinGW > and I needed to finally build the QEMU so can anyone help me out with > this?? > > Thanks for the time and help :) > > Arturo Corrales V. > Hello Arturo, please try these instructions: http://wiki.qemu.org/Hosts/W32 I use the Python installer from the official Python homepage and add its installation path to PATH in the MinGW shell. You will need Python 2.6, not Python 3. Regards, Stefan W.