From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4433 invoked by alias); 29 Nov 2006 11:04:31 -0000 Received: (qmail 4421 invoked by uid 22791); 29 Nov 2006 11:04:29 -0000 X-Spam-Check-By: sourceware.org Received: from mxout.hispeed.ch (HELO smtp.hispeed.ch) (62.2.95.247) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 29 Nov 2006 11:04:23 +0000 Received: from indel.ch (84-73-11-232.dclient.hispeed.ch [84.73.11.232]) by smtp.hispeed.ch (8.12.11.20060308/8.12.6/taifun-1.0) with SMTP id kATB4If2020654 for ; Wed, 29 Nov 2006 12:04:19 +0100 Received: from FABI.indel.ch [192.168.1.91] by indel.ch [127.0.0.1] with SMTP (MDaemon.v2.7.SP5.R) for ; Wed, 29 Nov 2006 12:03:44 +0100 Message-Id: <5.2.0.9.1.20061129120016.0189e060@NT_SERVER> X-Sender: cenedese@NT_SERVER (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Wed, 29 Nov 2006 11:04:00 -0000 To: gdb@sourceware.org From: Fabian Cenedese Subject: Re: symbol maintenance In-Reply-To: <5.2.0.9.1.20061129115200.0189e970@NT_SERVER> References: <5.2.0.9.1.20061128123045.0176cec0@NT_SERVER> <5.2.0.9.1.20061124142829.017493c0@NT_SERVER> <5.2.0.9.1.20061124142829.017493c0@NT_SERVER> <5.2.0.9.1.20061128123045.0176cec0@NT_SERVER> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-MDaemon-Deliver-To: gdb@sourceware.org X-Return-Path: cenedese@indel.ch X-Virus-Status: Clean X-DCC-spamcheck-02.tornado.cablecom.ch-Metrics: smtp-04.tornado.cablecom.ch 1378; Body=1 Fuz1=1 Fuz2=1 X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-11/txt/msg00216.txt.bz2 At 11:53 29.11.2006 +0100, you wrote: >At 11:42 28.11.2006 -0800, Jim Blandy wrote: > >>Fabian Cenedese writes: >>>>> This is a gdb 6.5 cross-compiled with cygwin on WinXP for ppc. >>>>> >>>>> (gdb) file gccext3.x >>>>> Reading symbols from /data/gdb-6.5/gdb/gccext3.x...unknown symbol type 0x1e...ex >>>>> panding to full symbols...unsupported const value attribute form: 'DW_FORM_string'... > >Got it, this warning comes from a variable defined as: > >const char systemTable[] = "SYSTEM"; > >The warning is output in dwarf2_const_value where there really is no >case for DW_FORM_string. Ack, actually that's wrong, this variable has type DW_FORM_strp. The DW_FORM_string is produced by: static char aStructNamebasetable[] = "Base"; bye Fabi