mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 13:56:22 +08:00
* emultempl/mmo.em (mmo_place_orphan): Handle case of no .text
output section.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-07-19 Hans-Peter Nilsson <hp@bitrange.com>
|
||||||
|
|
||||||
|
* emultempl/mmo.em (mmo_place_orphan): Handle case of no .text
|
||||||
|
output section.
|
||||||
|
|
||||||
2002-07-16 Denis Chertykov <denisc@overta.ru>
|
2002-07-16 Denis Chertykov <denisc@overta.ru>
|
||||||
Nick Clifton <nickc@redhat.com>
|
Nick Clifton <nickc@redhat.com>
|
||||||
Frank Ch. Eigler <fche@redhat.com>
|
Frank Ch. Eigler <fche@redhat.com>
|
||||||
|
@ -152,6 +152,17 @@ mmo_place_orphan (file, s)
|
|||||||
/* Restore the global list pointer. */
|
/* Restore the global list pointer. */
|
||||||
stat_ptr = old;
|
stat_ptr = old;
|
||||||
|
|
||||||
|
/* We need an output section for .text as a root, so if there was none
|
||||||
|
(might happen with a peculiar linker script such as in "map
|
||||||
|
addresses", map-address.exp), we grab the output section created
|
||||||
|
above. */
|
||||||
|
if (hold_text.os == NULL)
|
||||||
|
{
|
||||||
|
if (os == NULL)
|
||||||
|
return false;
|
||||||
|
hold_text.os = os;
|
||||||
|
}
|
||||||
|
|
||||||
snew = os->bfd_section;
|
snew = os->bfd_section;
|
||||||
bfd_section = place->os->bfd_section;
|
bfd_section = place->os->bfd_section;
|
||||||
if (place->section == NULL && bfd_section == NULL)
|
if (place->section == NULL && bfd_section == NULL)
|
||||||
|
Reference in New Issue
Block a user