diff options
author | Kai Tietz <ktietz@redhat.com> | 2015-07-03 15:50:29 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-07-03 15:50:29 +0100 |
commit | 0f088b2a9417b1d4ed597849ffa671eba25f5051 (patch) | |
tree | 71be9adb049a632d7c572c0a8d82ad5ca8539de9 /ld/ChangeLog | |
parent | b6b3dd8f31c96b6f7ba26de1508c3c1b2fd437f9 (diff) | |
download | gdb-0f088b2a9417b1d4ed597849ffa671eba25f5051.zip gdb-0f088b2a9417b1d4ed597849ffa671eba25f5051.tar.gz gdb-0f088b2a9417b1d4ed597849ffa671eba25f5051.tar.bz2 |
Add experimental support for --gc-sections with COFF and PE based targets.
PR ld/11539
bfd * coffcode.h (coff_bfd_gc_sections): Define default
to bfd_coff_gc_sections function.
* cofflink.c (init_reloc_cookie): Copy and adjust coff
related code about gc-sections from elflink.c to here.
(fini_reloc_cookie): Likewise.
(init_reloc_cookie_rels): Likewise.
(fini_reloc_cookie_rels): Likewise.
(init_reloc_cookie_for_section): Likewise.
(fini_reloc_cookie_for_section): Likewise.
(_bfd_coff_gc_mark_hook): Likewise.
(_bfd_coff_gc_mark_rsec): Likewise.
(_bfd_coff_gc_mark_reloc): Likewise.
(_bfd_coff_gc_mark): Likewise.
(_bfd_coff_gc_mark_extra_sections): Likewise.
(coff_gc_sweep_symbol_info): Likewise.
(coff_gc_sweep_symbol): Likewise.
(gc_sweep_hook_fn): Likewise.
(coff_gc_sweep): Likewise.
(bfd_coff_gc_sections): Likewise.
(_bfd_coff_gc_keep): Likewise.
* libcoff.h (coff_reloc_cookie): New struct.
(bfd_coff_gc_sections): New prototype.
(coff_gc_mark_hook_fn): New type.
ld * scripttempl/pep.sc: Mark .idata*, .CRT*, .tls*,
.rsrc*, .init, .ctor*, .dtor*, .fini, .jcr,
.eh_frame, .pdata. .xdata, and .gcc_except_table sections
as KEEP.
* scripttempl/pe.sc: Likewise.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 7324717..9228ead 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,15 @@ +2015-07-03 Kai Tietz <ktietz@redhat.com> + + PR ld/11539 + * scripttempl/pep.sc: Mark .idata*, .CRT*, .tls*, + .rsrc*, .init, .ctor*, .dtor*, .fini, .jcr, + .eh_frame, .pdata. .xdata, and .gcc_except_table sections + as KEEP. + * scripttempl/pe.sc: Likewise. + * ld.texinfo: Document that --gc-sections has experimental support + for COFF and PE targets. + * NEWS: Mention experimental support. + 2015-07-03 Alan Modra <amodra@gmail.com> * Makefile.am (eelf32or1k.c, eelf32or1k_linux.c): Depend on ELF_DEPS. |