From: Alan Modra Date: Tue, 8 Apr 2008 05:41:19 +0000 (+0000) Subject: * elflink.c (bfd_elf_size_dynamic_sections): Ignore GNU-stack note X-Git-Tag: sid-snapshot-20080501~256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a94b9d2d3a081b0dad966ee7618ffba469b54f9f;p=platform%2Fupstream%2Fbinutils.git * elflink.c (bfd_elf_size_dynamic_sections): Ignore GNU-stack note in EXEC_P bfds. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b8afd28..4e5c262 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2008-04-08 Kees Cook + + * elflink.c (bfd_elf_size_dynamic_sections): Ignore GNU-stack note + in EXEC_P bfds. + 2008-04-08 Alan Modra * elf32-spu.c: Include libiberty.h. diff --git a/bfd/elflink.c b/bfd/elflink.c index 65cb852..28282f6 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -5403,7 +5403,7 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, { asection *s; - if (inputobj->flags & (DYNAMIC | BFD_LINKER_CREATED)) + if (inputobj->flags & (DYNAMIC | EXEC_P | BFD_LINKER_CREATED)) continue; s = bfd_get_section_by_name (inputobj, ".note.GNU-stack"); if (s)