From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25874 invoked by alias); 25 Jan 2005 21:09:27 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 25780 invoked from network); 25 Jan 2005 21:09:17 -0000 Received: from unknown (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org with SMTP; 25 Jan 2005 21:09:17 -0000 Received: from elgar.sibelius.xs4all.nl (elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id j0PL9F87018883; Tue, 25 Jan 2005 22:09:15 +0100 (CET) Received: from elgar.sibelius.xs4all.nl (localhost [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.12.6p3/8.12.6) with ESMTP id j0PL9EkJ001423; Tue, 25 Jan 2005 22:09:14 +0100 (CET) (envelope-from kettenis@elgar.sibelius.xs4all.nl) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.12.6p3/8.12.6/Submit) id j0PL9Ehs001420; Tue, 25 Jan 2005 22:09:14 +0100 (CET) Date: Tue, 25 Jan 2005 21:09:00 -0000 Message-Id: <200501252109.j0PL9Ehs001420@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: ezannoni@redhat.com, gdb@sources.redhat.com In-reply-to: <200501161944.j0GJi5Yj005805@elgar.sibelius.xs4all.nl> (message from Mark Kettenis on Sun, 16 Jan 2005 20:44:05 +0100 (CET)) Subject: Re: [PING] Re: Giving canonical sections a name breaks GDB? References: <200412201241.iBKCfCiI021313@juw15.nfra.nl> <20041220223449.GA13749@bubble.modra.org> <200412212027.iBLKRe7L000687@elgar.sibelius.xs4all.nl> <200501161944.j0GJi5Yj005805@elgar.sibelius.xs4all.nl> X-SW-Source: 2005-01/txt/msg00123.txt.bz2 [ Ping ] Elena, is this patch ok? Date: Tue, 21 Dec 2004 21:27:40 +0100 (CET) From: Mark Kettenis Date: Tue, 21 Dec 2004 09:04:49 +1030 From: Alan Modra On Mon, Dec 20, 2004 at 01:41:12PM +0100, Mark Kettenis wrote: > Any idea what's wrong? Try this * elfread.c (elf_symtab_read): Discard section syms. Thanks, yes, that solves the problem. Elena, is this ok? Perhaps it needs a comment? Mark Index: gdb/elfread.c =================================================================== RCS file: /cvs/src/src/gdb/elfread.c,v retrieving revision 1.47 diff -u -p -r1.47 elfread.c --- gdb/elfread.c 23 Oct 2004 16:18:08 -0000 1.47 +++ gdb/elfread.c 20 Dec 2004 22:34:20 -0000 @@ -254,6 +254,8 @@ elf_symtab_read (struct objfile *objfile &objfile->objfile_obstack); #endif } + else if (sym->flags & BSF_SECTION_SYM) + continue; else if (sym->flags & (BSF_GLOBAL | BSF_LOCAL | BSF_WEAK)) { struct minimal_symbol *msym;