diff options
author | David O'Brien <obrien@FreeBSD.org> | 2000-09-25 05:45:14 +0000 |
---|---|---|
committer | David O'Brien <obrien@FreeBSD.org> | 2000-09-25 05:45:14 +0000 |
commit | 1da7811edce7f3257dd87aa8d7f4d8874c81bc00 (patch) | |
tree | ec8c03ee971157a1b95348f21a37dc0378877c15 | |
parent | e3f370c3e79521d4ffe0dfeb6c0ad0616e093ea3 (diff) | |
download | gdb-1da7811edce7f3257dd87aa8d7f4d8874c81bc00.zip gdb-1da7811edce7f3257dd87aa8d7f4d8874c81bc00.tar.gz gdb-1da7811edce7f3257dd87aa8d7f4d8874c81bc00.tar.bz2 |
Merge from head: H.J's x86 fix for "nm -l" on shared libraries.
This fixes a problem in using GDB 4.18 on shared libs on FreeBSD/i386 4.1.
Approved by: Philip Blundell <philb@gnu.org>
Message-Id: <E13bolZ-0004CJ-00@kings-cross.london.uk.eu.org>
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf32-i386.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ee30aaf..9aab1c6 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2000-09-24 H.J. Lu <hjl@gnu.org> + + From 2000-04-20 H.J. Lu <hjl@gnu.org> + * elf32-i386.c (elf_i386_relocate_section): Restrict 1998-12-10 + patch to symbols defined by a shared object. + 2000-09-06 Philip Blundell <philb@gnu.org> Merge from mainline: diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index 90efba8..e4dbf9d 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -1291,7 +1291,9 @@ elf_i386_relocate_section (output_bfd, info, input_bfd, input_section, sections against symbols defined externally in shared libraries. We can't do anything with them here. */ - || (input_section->flags & SEC_DEBUGGING) != 0))) + || ((input_section->flags & SEC_DEBUGGING) != 0 + && (h->elf_link_hash_flags + & ELF_LINK_HASH_DEF_DYNAMIC) != 0)))) { /* In these cases, we don't need the relocation value. We check specially because in some |