* archive.c (_bfd_compute_and_write_armap): Allow symbols flagged
as unique in the armap.
This commit is contained in:
parent
6abec6bce3
commit
1352b58a73
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-03-26 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
|
* archive.c (_bfd_compute_and_write_armap): Allow symbols flagged
|
||||||
|
as unique in the armap.
|
||||||
|
|
||||||
2010-03-26 Alan Modra <amodra@gmail.com>
|
2010-03-26 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
PR ld/11375
|
PR ld/11375
|
||||||
|
@ -369,7 +374,7 @@
|
||||||
elfcore_write_s390_prefix): New.
|
elfcore_write_s390_prefix): New.
|
||||||
(elfcore_grok_note): Handle NT_S390_TIMER, NT_S390_TODCMP,
|
(elfcore_grok_note): Handle NT_S390_TIMER, NT_S390_TODCMP,
|
||||||
NT_S390_TODPREG, NT_S390_CTRS and NT_S390_PREFIX.
|
NT_S390_TODPREG, NT_S390_CTRS and NT_S390_PREFIX.
|
||||||
(elfcore_write_register_note): Handle .reg-s390-timer,
|
(elfcore_write_register_note): Handle .reg-s390-timer,
|
||||||
.reg-s390-todcmp, .reg-s390-todpreg, .reg-s390-ctrs,
|
.reg-s390-todcmp, .reg-s390-todpreg, .reg-s390-ctrs,
|
||||||
.reg-s390-prefix section.
|
.reg-s390-prefix section.
|
||||||
|
|
||||||
|
@ -765,10 +770,10 @@
|
||||||
2010-01-19 Daisuke Hatayama <d.hatayama@jp.fujitsu.com>
|
2010-01-19 Daisuke Hatayama <d.hatayama@jp.fujitsu.com>
|
||||||
Alan Modra <amodra@gmail.com>
|
Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* elfcode.h (elf_swap_ehdr_out): Handle e_phnum > 0xffff.
|
* elfcode.h (elf_swap_ehdr_out): Handle e_phnum > 0xffff.
|
||||||
(elf_object_p): Read e_phnum extension.
|
(elf_object_p): Read e_phnum extension.
|
||||||
(elf_write_shdrs_and_ehdr): Write e_phnum extension.
|
(elf_write_shdrs_and_ehdr): Write e_phnum extension.
|
||||||
* elfcore.h (elf_core_file_p): Read e_phnum extension. Sanity check
|
* elfcore.h (elf_core_file_p): Read e_phnum extension. Sanity check
|
||||||
that we can read last program header.
|
that we can read last program header.
|
||||||
|
|
||||||
2010-01-19 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
2010-01-19 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
||||||
|
|
|
@ -2196,6 +2196,7 @@ _bfd_compute_and_write_armap (bfd *arch, unsigned int elength)
|
||||||
if ((flags & BSF_GLOBAL
|
if ((flags & BSF_GLOBAL
|
||||||
|| flags & BSF_WEAK
|
|| flags & BSF_WEAK
|
||||||
|| flags & BSF_INDIRECT
|
|| flags & BSF_INDIRECT
|
||||||
|
|| flags & BSF_GNU_UNIQUE
|
||||||
|| bfd_is_com_section (sec))
|
|| bfd_is_com_section (sec))
|
||||||
&& ! bfd_is_und_section (sec))
|
&& ! bfd_is_und_section (sec))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue