forked from Imagelibrary/rtems
Corrected so sections did not overlap with new version of binutils.
This commit is contained in:
@@ -28,6 +28,10 @@ SECTIONS
|
|||||||
text_start = . ;
|
text_start = . ;
|
||||||
*(.text)
|
*(.text)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
|
*(.gnu.linkonce.t.*)
|
||||||
|
*(.descriptors)
|
||||||
|
/* .gnu.warning sections are handled specially by elf32.em. */
|
||||||
|
*(.gnu.warning)
|
||||||
|
|
||||||
*(.eh_fram)
|
*(.eh_fram)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
@@ -47,10 +51,12 @@ SECTIONS
|
|||||||
__DTOR_END__ = .;
|
__DTOR_END__ = .;
|
||||||
etext = ALIGN( 0x10 ) ;
|
etext = ALIGN( 0x10 ) ;
|
||||||
}
|
}
|
||||||
|
.rodata : { *(.rodata) *(.gnu.linkonce.r*) } >RAM
|
||||||
.data 0x010000 :
|
.data 0x010000 :
|
||||||
{
|
{
|
||||||
data_start = . ;
|
data_start = . ;
|
||||||
*(.data)
|
*(.data)
|
||||||
|
*(.gnu.linkonce.d.*)
|
||||||
edata = ALIGN( 0x10 ) ;
|
edata = ALIGN( 0x10 ) ;
|
||||||
}
|
}
|
||||||
.bss ADDR( .data ) + SIZEOF( .data ):
|
.bss ADDR( .data ) + SIZEOF( .data ):
|
||||||
|
|||||||
Reference in New Issue
Block a user