diff options
author | Alan Modra <amodra@gmail.com> | 2004-05-26 10:23:51 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-05-26 10:23:51 +0000 |
commit | e49f502242bc5fc72547397cd344aea5b9f53a14 (patch) | |
tree | ae210021072a6f2ccbcc28338697c52a865fb43c /ld/emultempl | |
parent | c23968a21823bf856b9876dcf30483dc26c1a650 (diff) | |
download | gdb-e49f502242bc5fc72547397cd344aea5b9f53a14.zip gdb-e49f502242bc5fc72547397cd344aea5b9f53a14.tar.gz gdb-e49f502242bc5fc72547397cd344aea5b9f53a14.tar.bz2 |
bfd/
* elf.c (_bfd_elf_make_section_from_shdr): Don't set SEC_EXCLUDE
for SHT_GROUP sections.
ld/
* ldlang.c (lang_add_section): Set SEC_EXCLUDE for SEC_GROUP
sections when doing a final link. Clear SEC_EXCLUDE when doing
a relocable link, except for SEC_DEBUGGING sections.
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Use the
same condition here to drop SEC_EXCLUDE orphan sections.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/elf32.em | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index cf002e5..89c5d5d 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -1182,7 +1182,9 @@ gld${EMULATION_NAME}_place_orphan (lang_input_statement_type *file, asection *s) #define HAVE_SECTION(hold, name) \ (hold.os != NULL || (hold.os = lang_output_section_find (name)) != NULL) - if ((s->flags & SEC_EXCLUDE) != 0 && !link_info.relocatable) + if (((s->flags & (SEC_EXCLUDE | SEC_GROUP)) != 0 && !link_info.relocatable) + || ((s->flags & (SEC_EXCLUDE | SEC_DEBUGGING)) + == (SEC_EXCLUDE | SEC_DEBUGGING))) { if (s->output_section == NULL) s->output_section = bfd_abs_section_ptr; |