+2020-07-07 Alan Modra <amodra@gmail.com>
+
+ * xcofflink.c (xcoff_mark): Don't mark const sections.
+ (bfd_xcoff_record_link_assignment): Add FIXME.
+ (_bfd_xcoff_bfd_final_link): Don't segfault on assorted magic
+ sections being discarded by linker script.
+
2020-07-07 Alan Modra <amodra@gmail.com>
* coff-rs6000.c (xcoff_write_archive_contents_old): Set default
static bfd_boolean
xcoff_mark (struct bfd_link_info *info, asection *sec)
{
- if (bfd_is_abs_section (sec)
+ if (bfd_is_const_section (sec)
|| (sec->flags & SEC_MARK) != 0)
return TRUE;
}
/* This function is called for each symbol to which the linker script
- assigns a value. */
+ assigns a value.
+ FIXME: In cases like the linker test ld-scripts/defined5 where a
+ symbol is defined both by an input object file and the script,
+ the script definition doesn't override the object file definition
+ as is usual for other targets. At least not when the symbol is
+ output. Other uses of the symbol value by the linker do use the
+ script value. */
bfd_boolean
bfd_xcoff_record_link_assignment (bfd *output_bfd,
/* Write out the loader section contents. */
o = xcoff_hash_table (info)->loader_section;
- if (o)
+ if (o != NULL
+ && o->size != 0
+ && o->output_section != bfd_abs_section_ptr)
{
BFD_ASSERT ((bfd_byte *) flinfo.ldrel
== (xcoff_hash_table (info)->loader_section->contents
/* Write out the magic sections. */
o = xcoff_hash_table (info)->linkage_section;
- if (o->size > 0
+ if (o != NULL
+ && o->size != 0
+ && o->output_section != bfd_abs_section_ptr
&& ! bfd_set_section_contents (abfd, o->output_section, o->contents,
(file_ptr) o->output_offset,
o->size))
goto error_return;
o = xcoff_hash_table (info)->toc_section;
- if (o->size > 0
+ if (o != NULL
+ && o->size != 0
+ && o->output_section != bfd_abs_section_ptr
&& ! bfd_set_section_contents (abfd, o->output_section, o->contents,
(file_ptr) o->output_offset,
o->size))
goto error_return;
o = xcoff_hash_table (info)->descriptor_section;
- if (o->size > 0
+ if (o != NULL
+ && o->size != 0
+ && o->output_section != bfd_abs_section_ptr
&& ! bfd_set_section_contents (abfd, o->output_section, o->contents,
(file_ptr) o->output_offset,
o->size))
/* Write out the debugging string table. */
o = xcoff_hash_table (info)->debug_section;
- if (o != NULL)
+ if (o != NULL
+ && o->size != 0
+ && o->output_section != bfd_abs_section_ptr)
{
struct bfd_strtab_hash *debug_strtab;