From c8645752ce31cc044ecc5f969a986fdcb6aab590 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Fri, 17 Mar 2017 17:08:11 +0100 Subject: configure: remove Cygwin 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 Reviewed-by: Stefan Weil Message-id: 20170317160811.28370-1-pbonzini@redhat.com Signed-off-by: Peter Maydell --- bsd-user/mmap.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'bsd-user') diff --git a/bsd-user/mmap.c b/bsd-user/mmap.c index ee5907330f..1ad018a127 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; -- cgit v1.2.1