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)
|
||||
*(.strings)
|
||||
_etext = .;
|
||||
${RELOCATING+_etext = .;}
|
||||
} ${RELOCATING+ > ram}
|
||||
.data :
|
||||
{
|
||||
*(.data)
|
||||
_edata = .;
|
||||
${RELOCATING+_edata = .;}
|
||||
} ${RELOCATING+ > ram}
|
||||
.bss :
|
||||
{
|
||||
${RELOCATING+ _bss_start = .};
|
||||
${RELOCATING+ _bss_start = .;}
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
${RELOCATING+ _end = .};
|
||||
} ${RELOCATING+ >ram}
|
||||
.stack :
|
||||
{
|
||||
_stack = .;
|
||||
${RELOCATING+_stack = .;}
|
||||
*(.stack)
|
||||
} ${RELOCATING+ > topram}
|
||||
}
|
||||
|
Reference in New Issue
Block a user