From patchwork Fri Aug 5 16:15:59 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 14340 Received: (qmail 98344 invoked by alias); 5 Aug 2016 16:16:05 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 98332 invoked by uid 89); 5 Aug 2016 16:16:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=recording, news 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; Fri, 05 Aug 2016 16:16:02 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (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 074BA335F64; Fri, 5 Aug 2016 16:16:01 +0000 (UTC) Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u75GFxaD005977; Fri, 5 Aug 2016 12:16:00 -0400 Subject: Re: [PATCH+7.12 1/1] gdb/NEWS: Mention C++ is now the default To: Eli Zaretskii References: <1470235750-14321-1-git-send-email-palves@redhat.com> <1470235750-14321-2-git-send-email-palves@redhat.com> <837fbxn7kd.fsf@gnu.org> Cc: gdb-patches@sourceware.org From: Pedro Alves Message-ID: Date: Fri, 5 Aug 2016 17:15:59 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <837fbxn7kd.fsf@gnu.org> On 08/03/2016 05:25 PM, Eli Zaretskii wrote: > The text is okay, but I think "./configure --help" should mention > "--disable-build-with-cxx", as it does with all the other options that > are enabled by default. > That's now done, so here's what I'm pushing to master and 7.12, updated to talk about --disable-build-with-cxx. From 71cf9b4a255d120100391d1f661fbaf556fccea7 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Fri, 5 Aug 2016 17:09:31 +0100 Subject: [PATCH] gdb/NEWS: Mention that C++ is now the default gdb/ChangeLog: 2016-08-05 Pedro Alves * NEWS: Mention that GDB and GDBserver build with a C++ compiler by default. --- gdb/NEWS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gdb/NEWS b/gdb/NEWS index 4d72027..b08d8a0 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -5,6 +5,13 @@ *** Changes in GDB 7.12 +* GDB and GDBserver now build with a C++ compiler by default. + + The --enable-build-with-cxx configure option is now enabled by + default. One must now explicitly configure with + --disable-build-with-cxx in order to build with a C compiler. This + option will be removed in a future release. + * GDBserver now supports recording btrace without maintaining an active GDB connection.