From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 71423 invoked by alias); 23 Mar 2018 15:35:34 -0000 Mailing-List: contact elfutils-devel-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: elfutils-devel-owner@sourceware.org Received: (qmail 71391 invoked by uid 89); 23 Mar 2018 15:35:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.4 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,SPF_PASS autolearn=ham version=3.3.2 spammy= X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: gnu.wildebeest.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (212.238.236.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 23 Mar 2018 15:35:32 +0000 Received: from tarox.wildebeest.org (tarox.wildebeest.org [172.31.17.39]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 4ACC83000670; Fri, 23 Mar 2018 16:35:30 +0100 (CET) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id EEB42404389F; Fri, 23 Mar 2018 16:35:29 +0100 (CET) Message-ID: <1521819329.15770.36.camel@klomp.org> Subject: Re: readelf ignore .debug_pubtypes From: Mark Wielaard To: Phi Debian , elfutils-devel@sourceware.org Date: Fri, 23 Mar 2018 15:35:00 -0000 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Evolution 3.22.6 (3.22.6-10.el7) Mime-Version: 1.0 X-Spam-Flag: NO X-IsSubscribed: yes X-SW-Source: 2018-q1/txt/msg00103.txt.bz2 Hi Phi, On Fri, 2018-03-23 at 15:57 +0100, Phi Debian wrote: > DL$ ~/elfutils/src/readelf --debug=3Dpubtypes ./vmlinux=C2=A0=C2=A0| more > Unknown DWARF debug section `pubtypes'. >=20 > Is that expected ? Unfortunately there is no support for .debug_pubtypes at all in elfutils at the moment. Note that in DWARF5 .debug_pubnames and .debug_pubtypes have been replaced with common index .debug_names (like .gdb_index). But there is no support for that index either yet (eu-readelf can read .gdb_index sections, but libdw won't take advantage of them yet). Sorry, Mark