mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
Add .debug_gdb_scripts section to PE linker scripts.
PR ld/21459 * scripttempl/pe.sc: Add .debug_gdb_scripts section. * scripttempl/pep.sc: Likewise.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2017-05-15 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR ld/21459
|
||||||
|
* scripttempl/pe.sc: Add .debug_gdb_scripts section.
|
||||||
|
* scripttempl/pep.sc: Likewise.
|
||||||
|
|
||||||
2017-05-12 H.J. Lu <hongjiu.lu@intel.com>
|
2017-05-12 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* testsuite/ld-i386/i386.exp: Run property-x86-3.
|
* testsuite/ld-i386/i386.exp: Run property-x86-3.
|
||||||
|
@ -402,5 +402,15 @@ SECTIONS
|
|||||||
{
|
{
|
||||||
*(.zdebug_types${RELOCATING+ .gnu.linkonce.wt.*})
|
*(.zdebug_types${RELOCATING+ .gnu.linkonce.wt.*})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For Go and Rust. */
|
||||||
|
.debug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
|
||||||
|
{
|
||||||
|
*(.debug_gdb_scripts)
|
||||||
|
}
|
||||||
|
.zdebug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
|
||||||
|
{
|
||||||
|
*(.zdebug_gdb_scripts)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
@ -415,5 +415,15 @@ SECTIONS
|
|||||||
{
|
{
|
||||||
*(.zdebug_types${RELOCATING+ .zdebug.gnu.linkonce.wt.*})
|
*(.zdebug_types${RELOCATING+ .zdebug.gnu.linkonce.wt.*})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For Go and Rust. */
|
||||||
|
.debug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
|
||||||
|
{
|
||||||
|
*(.debug_gdb_scripts)
|
||||||
|
}
|
||||||
|
.zdebug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
|
||||||
|
{
|
||||||
|
*(.zdebug_gdb_scripts)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
Reference in New Issue
Block a user