(read_section_stabs_debugging_info): Add $GDB_SYMBOLS$ entry to names[]

array for SOM binaries.
This commit is contained in:
Nick Clifton 2005-12-22 18:11:09 +00:00
parent ecc49060c6
commit 7806762e81
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-12-22 Randolph Chung <randolph@tausq.org>
* rddbg.c (read_section_stabs_debugging_info): Add $GDB_SYMBOLS$
entry to names[] array for SOM binaries.
2005-12-21 H.J. Lu <hjl@gnu.org>
* MAINTAINERS: Add myself as x86_64 maintainer.

View File

@ -1,5 +1,5 @@
/* rddbg.c -- Read debugging information into a generic form.
Copyright 1995, 1996, 1997, 2000, 2002, 2003
Copyright 1995, 1996, 1997, 2000, 2002, 2003, 2005
Free Software Foundation, Inc.
Written by Ian Lance Taylor <ian@cygnus.com>.
@ -100,8 +100,13 @@ read_section_stabs_debugging_info (bfd *abfd, asymbol **syms, long symcount,
{
const char *secname;
const char *strsecname;
} names[] = { { ".stab", ".stabstr" },
{ "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr" } };
}
names[] =
{
{ ".stab", ".stabstr" },
{ "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr" },
{ "$GDB_SYMBOLS$", "$GDB_STRINGS$" }
};
unsigned int i;
void *shandle;