summaryrefslogtreecommitdiffstats
path: root/bsd-user/mmap.c
diff options
context:
space:
mode:
authorPaolo Bonzini2017-03-17 16:32:47 +0100
committerPaolo Bonzini2017-03-19 11:12:12 +0100
commit732a802076635e9a5d56a9e37332e5c1836d43f2 (patch)
treeb23a6dc805fc280bd48cae11f4bb5b87fdced38e /bsd-user/mmap.c
parentxen: do not build backends for targets that do not support xen (diff)
downloadqemu-732a802076635e9a5d56a9e37332e5c1836d43f2.tar.gz
qemu-732a802076635e9a5d56a9e37332e5c1836d43f2.tar.xz
qemu-732a802076635e9a5d56a9e37332e5c1836d43f2.zip
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 <pbonzini@redhat.com>
Diffstat (limited to 'bsd-user/mmap.c')
-rw-r--r--bsd-user/mmap.c5
1 files changed, 0 insertions, 5 deletions
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;