From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47119) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1couQQ-00068f-Ms for qemu-devel@nongnu.org; Fri, 17 Mar 2017 12:08:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1couQL-0007FZ-LI for qemu-devel@nongnu.org; Fri, 17 Mar 2017 12:08:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41488) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1couQL-0007FS-FA for qemu-devel@nongnu.org; Fri, 17 Mar 2017 12:08:17 -0400 From: Paolo Bonzini Date: Fri, 17 Mar 2017 17:08:11 +0100 Message-Id: <20170317160811.28370-1-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH for 2.9 v2] configure: remove Cygwin List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, thuth@redhat.com, sw@weilnetz.de 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 --- bsd-user/mmap.c | 5 ----- configure | 6 ------ 2 files changed, 11 deletions(-) diff --git a/bsd-user/mmap.c b/bsd-user/mmap.c index ee59073..1ad018a 100644 --- a/bsd-user/mmap.c +++ b/bsd-user/mmap.c @@ -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; diff --git a/configure b/configure index 99d8bec..b9a30cf 100755 --- 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" -- 2.9.3