From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18976 invoked by alias); 26 Nov 2014 11:48:59 -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 18967 invoked by uid 89); 26 Nov 2014 11:48:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_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; Wed, 26 Nov 2014 11:48:57 +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 sAQBms2P009655 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 26 Nov 2014 06:48:54 -0500 Received: from bordewijk.wildebeest.org (ovpn-116-48.ams2.redhat.com [10.36.116.48]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sAQBmrHp001801 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 26 Nov 2014 06:48:54 -0500 Received: by bordewijk.wildebeest.org (Postfix, from userid 1000) id C85E9806200A; Wed, 26 Nov 2014 12:48:52 +0100 (CET) Message-ID: <1417002531.4954.23.camel@bordewijk.wildebeest.org> Subject: Re: [PATCH] Recognize new DWARFv5 C11, C++11 and C++14 DW_LANG constants. From: Mark Wielaard To: Doug Evans Cc: gdb-patches Date: Wed, 26 Nov 2014 11:48:00 -0000 In-Reply-To: References: <1416859096-29132-1-git-send-email-mjw@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 X-SW-Source: 2014-11/txt/msg00660.txt.bz2 On Mon, 2014-11-24 at 12:07 -0800, Doug Evans wrote: > On Mon, Nov 24, 2014 at 11:58 AM, Mark Wielaard wrote: > > The following patch is needed to recognize the new DW_LANG constants > > that GCC 5 might emit as implemented by this GCC patch: > > https://gcc.gnu.org/ml/gcc-patches/2014-11/msg02852.html > > > > gdb/ChangeLog > > > > * dwarf2read.c (set_cu_language): Recognize DW_LANG_C11, > > DW_LANG_C_plus_plus_11, DW_LANG_C_plus_plus_14. > > > > include/ChangeLog > > > > * dwarf2.h: Add DW_LANG_C_plus_plus_11, DW_LANG_C11 and > > DW_LANG_C_plus_plus_14. > > > > OK to commit? >=20 > dwarf2.h exists in the gcc tree and is therefore owned by gcc. > As long as this part of the patch is in the gcc tree first, > ok by me. The dwarf2.h change is also in the gcc tree. I have pushed the same with the above patch to the gdb tree. Thanks, Mark