From: Jakub Jelinek Date: Wed, 23 Oct 2002 20:13:01 +0000 (+0000) Subject: * emultempl/elf32.em (place_orphan): Don't put non-allocated .rel* X-Git-Tag: gdb_6_0-branchpoint~1030 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8927cfd1ab2dac807c4d22428f3dbfd3c9d8713;p=thirdparty%2Fbinutils-gdb.git * emultempl/elf32.em (place_orphan): Don't put non-allocated .rel* sections into .rel{,a}.dyn. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 9bbbbf3296c..48645005ee8 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2002-10-23 Jakub Jelinek + + * emultempl/elf32.em (place_orphan): Don't put non-allocated .rel* + sections into .rel{,a}.dyn. + 2002-10-23 Nick Clifton * lexsup.c (OPTION_NO_OMAGIC): Define. diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 62c39f442af..4fee5fb8556 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -1098,6 +1098,7 @@ gld${EMULATION_NAME}_place_orphan (file, s) secname = bfd_get_section_name (s->owner, s); if (! link_info.relocateable && link_info.combreloc + && (s->flags & SEC_ALLOC) && strncmp (secname, ".rel", 4) == 0) { if (secname[4] == 'a')