diff options
author | John Gilmore <gnu@cygnus> | 1992-07-04 13:59:03 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-07-04 13:59:03 +0000 |
commit | 2670f34d21cbd859050111686f945b73f005a70d (patch) | |
tree | 3ca968e2a7f72326197808f1b991a4b29642bb32 /gdb/symmisc.c | |
parent | 76512886f9d138f88e0c853a36681243aef32c64 (diff) | |
download | gdb-2670f34d21cbd859050111686f945b73f005a70d.zip gdb-2670f34d21cbd859050111686f945b73f005a70d.tar.gz gdb-2670f34d21cbd859050111686f945b73f005a70d.tar.bz2 |
Relocate symbols using an array of section_offsets, rather than a
single `addr' or `offset'. This makes Solaris-2 support work, and
permits better VxWorks (and maybe xcoff) support later. See ChangeLog.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index b460734..73d72e8 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -264,8 +264,15 @@ dump_psymtab (objfile, psymtab, outfile) " Full symtab was read (at 0x%x by function at 0x%x)\n", psymtab -> symtab, psymtab -> read_symtab); } - fprintf_filtered (outfile, " Relocate symbols by 0x%x\n", - psymtab -> addr); + + /* FIXME, we need to be able to print the relocation stuff. */ + /* This prints some garbage for anything but stabs right now. FIXME. */ + fprintf_filtered (outfile, " Relocate symbols by 0x%x, 0x%x, 0x%x, 0x%x.\n", + ANOFFSET (psymtab->section_offsets, 0), + ANOFFSET (psymtab->section_offsets, 1), + ANOFFSET (psymtab->section_offsets, 2), + ANOFFSET (psymtab->section_offsets, 3)); + fprintf_filtered (outfile, " Symbols cover text addresses 0x%x-0x%x\n", psymtab -> textlow, psymtab -> texthigh); fprintf_filtered (outfile, " Depends on %d other partial symtabs.\n", |