mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 08:24:05 +08:00
PR 6945
* ldlang.c (lang_size_sections_1): Do not update the VMAs of output sections when performing a relocatable link on COFF objects.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2008-10-25 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR 6945
|
||||||
|
* ldlang.c (lang_size_sections_1): Do not update the VMAs of
|
||||||
|
output sections when performing a relocatable link on COFF
|
||||||
|
objects.
|
||||||
|
|
||||||
2008-10-22 Nick Clifton <nickc@redhat.com>
|
2008-10-22 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* emultempl/armelf.em (arm_elf_after_open): Move check for using a
|
* emultempl/armelf.em (arm_elf_after_open): Move check for using a
|
||||||
|
@ -4626,7 +4626,12 @@ lang_size_sections_1
|
|||||||
os->name, (unsigned long) (newdot - savedot));
|
os->name, (unsigned long) (newdot - savedot));
|
||||||
}
|
}
|
||||||
|
|
||||||
bfd_set_section_vma (0, os->bfd_section, newdot);
|
/* PR 6945: Do not update the vma's of output sections
|
||||||
|
when performing a relocatable link on COFF objects. */
|
||||||
|
if (! link_info.relocatable
|
||||||
|
|| (bfd_get_flavour (link_info.output_bfd)
|
||||||
|
!= bfd_target_coff_flavour))
|
||||||
|
bfd_set_section_vma (0, os->bfd_section, newdot);
|
||||||
|
|
||||||
os->bfd_section->output_offset = 0;
|
os->bfd_section->output_offset = 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user