diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-06-20 16:36:18 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-06-20 16:36:18 +0000 |
commit | 6a4a0940e56e3f60f38b2b49991efc0969bc206a (patch) | |
tree | 01a67d0b0281e8b8aff9093ff385b40fbec3be01 /bfd | |
parent | e36284abcf727bced126cad8c8a1cc7ba33ad6c2 (diff) | |
download | gdb-6a4a0940e56e3f60f38b2b49991efc0969bc206a.zip gdb-6a4a0940e56e3f60f38b2b49991efc0969bc206a.tar.gz gdb-6a4a0940e56e3f60f38b2b49991efc0969bc206a.tar.bz2 |
* elflink.c (elf_link_add_object_symbols): Don't create .tcommon
section for relocatable link.
* ld-elf/tls_common.exp: New test.
* ld-elf/tls_common.s: New file.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elflink.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b6996a8..8b32685 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2006-06-20 Jakub Jelinek <jakub@redhat.com> + + * elflink.c (elf_link_add_object_symbols): Don't create .tcommon + section for relocatable link. + 2006-06-21 Alan Modra <amodra@bigpond.net.au> * elf-bfd.h (struct elf_backend_data): Add diff --git a/bfd/elflink.c b/bfd/elflink.c index 0a32963..4b20749 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -3621,7 +3621,8 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info) goto error_free_vers; if (isym->st_shndx == SHN_COMMON - && ELF_ST_TYPE (isym->st_info) == STT_TLS) + && ELF_ST_TYPE (isym->st_info) == STT_TLS + && !info->relocatable) { asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon"); |