mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
Bug fixes for Hitachi
This commit is contained in:
@ -16,23 +16,23 @@ SECTIONS
|
|||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.strings)
|
*(.strings)
|
||||||
_etext = .;
|
${RELOCATING+_etext = .;}
|
||||||
} ${RELOCATING+ > ram}
|
} ${RELOCATING+ > ram}
|
||||||
.data :
|
.data :
|
||||||
{
|
{
|
||||||
*(.data)
|
*(.data)
|
||||||
_edata = .;
|
${RELOCATING+_edata = .;}
|
||||||
} ${RELOCATING+ > ram}
|
} ${RELOCATING+ > ram}
|
||||||
.bss :
|
.bss :
|
||||||
{
|
{
|
||||||
${RELOCATING+ _bss_start = .};
|
${RELOCATING+ _bss_start = .;}
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
${RELOCATING+ _end = .};
|
${RELOCATING+ _end = .};
|
||||||
} ${RELOCATING+ >ram}
|
} ${RELOCATING+ >ram}
|
||||||
.stack :
|
.stack :
|
||||||
{
|
{
|
||||||
_stack = .;
|
${RELOCATING+_stack = .;}
|
||||||
*(.stack)
|
*(.stack)
|
||||||
} ${RELOCATING+ > topram}
|
} ${RELOCATING+ > topram}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user