mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* elf32-hppa.c (elf32_hppa_size_dynamic_sections): Use info->executable
instead of !info->shared.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2005-12-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||||
|
|
||||||
|
* elf32-hppa.c (elf32_hppa_size_dynamic_sections): Use info->executable
|
||||||
|
instead of !info->shared.
|
||||||
|
|
||||||
2005-12-27 Jan-Benedict Glaw <jbglaw@lug-owl.de>
|
2005-12-27 Jan-Benedict Glaw <jbglaw@lug-owl.de>
|
||||||
|
|
||||||
* vaxlinux.h: New file. (TRAD_CORE_EXTRA_SIZE_ALLOWED): Define.
|
* vaxlinux.h: New file. (TRAD_CORE_EXTRA_SIZE_ALLOWED): Define.
|
||||||
|
@ -2347,7 +2347,7 @@ elf32_hppa_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
|
|||||||
must add the entries now so that we get the correct size for
|
must add the entries now so that we get the correct size for
|
||||||
the .dynamic section. The DT_DEBUG entry is filled in by the
|
the .dynamic section. The DT_DEBUG entry is filled in by the
|
||||||
dynamic linker and used by the debugger. */
|
dynamic linker and used by the debugger. */
|
||||||
if (!info->shared)
|
if (info->executable)
|
||||||
{
|
{
|
||||||
if (!add_dynamic_entry (DT_DEBUG, 0))
|
if (!add_dynamic_entry (DT_DEBUG, 0))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
Reference in New Issue
Block a user