svn commit: r244904 - stable/9/contrib/binutils/bfd
Dimitry Andric
dim at FreeBSD.org
Mon Dec 31 14:21:32 UTC 2012
Author: dim
Date: Mon Dec 31 14:21:31 2012
New Revision: 244904
URL: http://svnweb.freebsd.org/changeset/base/244904
Log:
MFC r244600:
Fix a bug in ld --gc-sections: it strips out .note sections, while it
should never do so. This can cause global constructors and destructors
to not be executed at run-time, resulting in crashes and other strange
behaviour.
Reported by: rene
Modified:
stable/9/contrib/binutils/bfd/elflink.c
Directory Properties:
stable/9/contrib/binutils/ (props changed)
Modified: stable/9/contrib/binutils/bfd/elflink.c
==============================================================================
--- stable/9/contrib/binutils/bfd/elflink.c Mon Dec 31 12:11:14 2012 (r244903)
+++ stable/9/contrib/binutils/bfd/elflink.c Mon Dec 31 14:21:31 2012 (r244904)
@@ -10584,6 +10584,7 @@ elf_gc_sweep (bfd *abfd, struct bfd_link
{
/* Keep debug and special sections. */
if ((o->flags & (SEC_DEBUGGING | SEC_LINKER_CREATED)) != 0
+ || elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
|| (o->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
o->gc_mark = 1;
More information about the svn-src-stable-9
mailing list