From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18181 invoked by alias); 18 Dec 2014 17:31:27 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 18171 invoked by uid 89); 18 Dec 2014 17:31:26 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 18 Dec 2014 17:31:25 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sBIHV7g4029978 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 18 Dec 2014 12:31:08 -0500 Received: from host2.jankratochvil.net (ovpn-116-142.ams2.redhat.com [10.36.116.142]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sBIHV3kc007613 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Thu, 18 Dec 2014 12:31:06 -0500 Date: Thu, 18 Dec 2014 17:31:00 -0000 From: Jan Kratochvil To: Eli Zaretskii Cc: ktietz@redhat.com, sellcey@imgtec.com, brobecker@adacore.com, yao@codesourcery.com, gdb-patches@sourceware.org Subject: Re: [patch] compile: rm -rf -> ftw()+rmdir()+unlink() [Re: [patch] compile: Fix MinGW build] Message-ID: <20141218173103.GA18871@host2.jankratochvil.net> References: <20141217210144.GA26674@host2.jankratochvil.net> <83wq5oub28.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <83wq5oub28.fsf@gnu.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2014-12/txt/msg00537.txt.bz2 On Thu, 18 Dec 2014 18:23:11 +0100, Eli Zaretskii wrote: > > It has built on Fedora 21 x86_64 mingw64 for both 32-bit and 64-bit targets. > > I am not sure about various other Unices but if the patch gets approved... > > There's no ftw in MinGW32. 32-bit .exe can be build either by MinGW3 (considered by Fedora as obsolete now) http://www.mingw.org/ or by MinGW64 in 32-bit mode http://mingw-w64.sourceforge.net/ at least according to: https://fedoraproject.org/wiki/Features/Mingw-w64_cross_compiler >From the Fedora point of view MinGW64 32-bit mode seems to be a superset of MinGW32 so why to care about MinGW32 anymore? Or what do I miss? Jan