From nobody Sun Apr 28 02:12:10 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1489766932077388.70260684128573; Fri, 17 Mar 2017 09:08:52 -0700 (PDT) Received: from localhost ([::1]:49775 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1couQs-0006AL-L8 for importer@patchew.org; Fri, 17 Mar 2017 12:08:50 -0400 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 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5DBCE7AEA1; Fri, 17 Mar 2017 16:08:17 +0000 (UTC) Received: from donizetti.redhat.com (ovpn-117-91.ams2.redhat.com [10.36.117.91]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id v2HG8CcW020145; Fri, 17 Mar 2017 12:08:13 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5DBCE7AEA1 Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=pbonzini@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 5DBCE7AEA1 From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Fri, 17 Mar 2017 17:08:11 +0100 Message-Id: <20170317160811.28370-1-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Fri, 17 Mar 2017 16:08:17 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH for 2.9 v2] configure: remove Cygwin X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org, thuth@redhat.com, sw@weilnetz.de Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" 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 --- 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; } =20 -#if defined(__CYGWIN__) -/* Cygwin doesn't have a whole lot of address space. */ -static abi_ulong mmap_next_start =3D 0x18000000; -#else static abi_ulong mmap_next_start =3D 0x40000000; -#endif =20 unsigned long last_brk; =20 diff --git a/configure b/configure index 99d8bec..b9a30cf 100755 --- a/configure +++ b/configure @@ -553,12 +553,6 @@ fi HOST_VARIANT_DIR=3D"" =20 case $targetos in -CYGWIN*) - mingw32=3D"yes" - QEMU_CFLAGS=3D"-mno-cygwin $QEMU_CFLAGS" - audio_possible_drivers=3D"sdl" - audio_drv_list=3D"sdl" -;; MINGW32*) mingw32=3D"yes" hax=3D"yes" --=20 2.9.3