Re: [Qemu-devel] qemu on Cygwin

2007-02-04 Thread Kazu
Hi, Sent: Sunday, February 04, 2007 2:16 AM Alexander Voropay wrote: > "Johannes Schindelin" <[EMAIL PROTECTED]> wrote: > >>> Did anyone try the latest CVS qemu on Cygwin ? > >> AFAICT this is due to SDL. I did not succeed in compiling any SDL related >> stuff in cygwin, but then, I did not real

Re: [Qemu-devel] qemu on Cygwin

2007-02-03 Thread Alexander Voropay
"Johannes Schindelin" <[EMAIL PROTECTED]> wrote: Did anyone try the latest CVS qemu on Cygwin ? AFAICT this is due to SDL. I did not succeed in compiling any SDL related stuff in cygwin, but then, I did not really try, since the MinGW compilation is easy enough. I've successfully compiled

Re: [Qemu-devel] qemu on Cygwin

2007-02-01 Thread Johannes Schindelin
Hi, On Wed, 31 Jan 2007, Alexander Voropay wrote: > Did anyone try the latest CVS qemu on Cygwin ? > > The build environment adds spacial "-mno-cygwin" option > which among other effects removes defaul *.h path (/usr/include/) > >from the search list. AFAICT this is due to SDL. I did not succ

Re: [Qemu-devel] qemu on Cygwin

2007-01-31 Thread Stefan Weil
> Hi! > > Did anyone try the latest CVS qemu on Cygwin ? > > The build environment adds spacial "-mno-cygwin" option > which among other effects removes defaul *.h path (/usr/include/) > from the search list. Default path with -mno-cygwin is /usr/include/mingw, so zlib.h must be installed t

[Qemu-devel] qemu on Cygwin

2007-01-31 Thread Alexander Voropay
Hi! Did anyone try the latest CVS qemu on Cygwin ? The build environment adds spacial "-mno-cygwin" option which among other effects removes defaul *.h path (/usr/include/) from the search list. For example: -- a.c -- #include main () {} $ gcc -c a.c--- OK $ gcc -mno-cygwin -c a.