From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97037 invoked by alias); 14 Nov 2019 18:27:25 -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 97023 invoked by uid 89); 14 Nov 2019 18:27:25 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-3.6 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:884 X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (209.51.188.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 14 Nov 2019 18:27:24 +0000 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57119) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iVJpx-0003PN-Rv; Thu, 14 Nov 2019 13:27:21 -0500 Received: from [176.228.60.248] (port=4713 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iVJpw-0007jZ-Gf; Thu, 14 Nov 2019 13:27:21 -0500 Date: Thu, 14 Nov 2019 18:27:00 -0000 Message-Id: <83mucy48lk.fsf@gnu.org> From: Eli Zaretskii To: Simon Marchi CC: andrew.burgess@embecosm.com, tromey@sourceware.org, palves@redhat.com, brobecker@adacore.com, kevinb@redhat.com, gdb-patches@sourceware.org In-reply-to: <4b637fa7-666c-4a80-8627-a6efefd6ec2a@polymtl.ca> (message from Simon Marchi on Thu, 14 Nov 2019 12:09:20 -0500) Subject: Re: [pushed] gdb: Support printf 'z' size modifier References: <20191112235315.5BD6728171@gnutoolchain-gerrit.osci.io> <83y2wi62jp.fsf@gnu.org> <20191114164945.GP11037@embecosm.com> <83pnhu4co3.fsf@gnu.org> <4b637fa7-666c-4a80-8627-a6efefd6ec2a@polymtl.ca> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-IsSubscribed: yes X-SW-Source: 2019-11/txt/msg00404.txt.bz2 > Cc: tromey@sourceware.org, palves@redhat.com, brobecker@adacore.com, > kevinb@redhat.com, gdb-patches@sourceware.org > From: Simon Marchi > Date: Thu, 14 Nov 2019 12:09:20 -0500 > > Apaprently, the __USE_MINGW_ANSI_STDIO macro has been marked as deprecated (IIUC, to > incite people not to define it directly), and I found this thread [1] on the mingw-users > mailing list where you asked the maintainer to reconsider this decision. > > What is the status on that? If defining __USE_MINGW_ANSI_STDIO is not the right way > of enabling this feature, then what is? What is the status of this? The "new" way is to use the __MINGW_FEATURES__ macro. But if you want to do this in a way that will work with noth mingw.org's MinGW and MinGW64, the __USE_MINGW_ANSI_STDIO is the way, and it is still supported.