mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-28 07:20:16 +00:00
the bss start and end symbols were changed
This commit is contained in:
@@ -26,7 +26,7 @@ SECTIONS
|
||||
_text_start = . ;
|
||||
*(.text)
|
||||
etext = ALIGN( 0x10 ) ;
|
||||
/* _etext = .; */
|
||||
/* _etext = .; -- conflicts */
|
||||
}
|
||||
.data ADDR( .text ) + SIZEOF( .text ):
|
||||
{
|
||||
@@ -34,12 +34,12 @@ SECTIONS
|
||||
_data_start = .;
|
||||
*(.data)
|
||||
edata = ALIGN( 0x10 ) ;
|
||||
/* _edata = .; */
|
||||
/* _edata = .; -- conflicts */
|
||||
}
|
||||
.bss ADDR( .data ) + SIZEOF( .data ):
|
||||
{
|
||||
bss_start = . ;
|
||||
/* _bss_start = . ; */
|
||||
_bss_start = . ;
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
end = . ;
|
||||
|
||||
Reference in New Issue
Block a user