From patchwork Wed Aug 3 14:49:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 14283 Received: (qmail 16588 invoked by alias); 3 Aug 2016 14:49:15 -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 16485 invoked by uid 89); 3 Aug 2016 14:49:15 -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=56, 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; Wed, 03 Aug 2016 14:49:14 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (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 E2C3885547 for ; Wed, 3 Aug 2016 14:49:12 +0000 (UTC) Received: from cascais.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u73EnA63025586 for ; Wed, 3 Aug 2016 10:49:12 -0400 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [PATCH+7.12 1/1] gdb/NEWS: Mention C++ is now the default Date: Wed, 3 Aug 2016 15:49:10 +0100 Message-Id: <1470235750-14321-2-git-send-email-palves@redhat.com> In-Reply-To: <1470235750-14321-1-git-send-email-palves@redhat.com> References: <1470235750-14321-1-git-send-email-palves@redhat.com> gdb/ChangeLog: yyyy-mm-dd 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..43737cb 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 now defaults to "yes". + One must now explicitly configure with --enable-build-with-cxx=no 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.