]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
configure: remove Cygwin
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 17 Mar 2017 15:32:47 +0000 (16:32 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Sun, 19 Mar 2017 10:12:12 +0000 (11:12 +0100)
The Cygwin target is really compiling for native Win32 with -mno-cygwin.
Except, GCC 4.7.0 has finally removed the long deprecated -mno-cygwin
option, and that happened about five years ago.

Let it rest in peace.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
bsd-user/mmap.c
configure

index ee5907330f5a00b11157789f69dd0ce3d6321710..1ad018a127898abc4fccd9d3d085e438000cdd11 100644 (file)
@@ -199,12 +199,7 @@ static int mmap_frag(abi_ulong real_start,
     return 0;
 }
 
-#if defined(__CYGWIN__)
-/* Cygwin doesn't have a whole lot of address space.  */
-static abi_ulong mmap_next_start = 0x18000000;
-#else
 static abi_ulong mmap_next_start = 0x40000000;
-#endif
 
 unsigned long last_brk;
 
index 99d8bece70479593e108ed0e3fcd5772e99a5d3f..b9a30cfd7bb57fcd83c6513a7d9eeb2b701a1cf8 100755 (executable)
--- a/configure
+++ b/configure
@@ -553,12 +553,6 @@ fi
 HOST_VARIANT_DIR=""
 
 case $targetos in
-CYGWIN*)
-  mingw32="yes"
-  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
-  audio_possible_drivers="sdl"
-  audio_drv_list="sdl"
-;;
 MINGW32*)
   mingw32="yes"
   hax="yes"