mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 05:52:21 +08:00
Support for xcoff64
This commit is contained in:
@ -10,6 +10,8 @@ ENTRY(__start)
|
||||
SECTIONS
|
||||
{
|
||||
.pad 0 : { *(.pad) }
|
||||
|
||||
. = 0x10000000;
|
||||
.text ${RELOCATING-0} : {
|
||||
${RELOCATING+PROVIDE (_text = .);}
|
||||
*(.text)
|
||||
@ -22,11 +24,14 @@ SECTIONS
|
||||
*(.tb)
|
||||
${RELOCATING+PROVIDE (_etext = .);}
|
||||
}
|
||||
.data 0 : {
|
||||
. = 0x20000000;
|
||||
.data . : {
|
||||
${RELOCATING+PROVIDE (_data = .);}
|
||||
*(.data)
|
||||
*(.rw)
|
||||
*(.sv)
|
||||
*(.sv64)
|
||||
*(.sv3264)
|
||||
*(.ua)
|
||||
. = ALIGN(4);
|
||||
${CONSTRUCTING+CONSTRUCTORS}
|
||||
@ -45,10 +50,12 @@ SECTIONS
|
||||
${RELOCATING+PROVIDE (_end = .);}
|
||||
${RELOCATING+PROVIDE (end = .);}
|
||||
}
|
||||
.loader 0 : {
|
||||
|
||||
.loader : {
|
||||
*(.loader)
|
||||
}
|
||||
.debug 0 : {
|
||||
|
||||
.debug : {
|
||||
*(.debug)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user