mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 06:08:20 +00:00
* startup/linkcmds: added *(.text.*) *(.data.*) *(.bss.*)
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2006-09-04 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
* startup/linkcmds: added *(.text.*) *(.data.*) *(.bss.*)
|
||||
|
||||
2006-02-01 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* configure.ac, console/console.c: Add USE_COM1_AS_CONSOLE BSP option.
|
||||
|
||||
@@ -46,6 +46,7 @@ SECTIONS
|
||||
. = ALIGN(4);
|
||||
*(.m_hdr)
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
. = ALIGN (16);
|
||||
|
||||
/*
|
||||
@@ -92,6 +93,7 @@ SECTIONS
|
||||
{
|
||||
_data_start = . ;
|
||||
*(.data)
|
||||
*(.data.*)
|
||||
*(.gnu.linkonce.d*)
|
||||
*(.gcc_except_table)
|
||||
_edata = ALIGN( 0x10 ) ;
|
||||
@@ -101,6 +103,7 @@ SECTIONS
|
||||
{
|
||||
_bss_start = . ;
|
||||
*(.bss)
|
||||
*(.bss.*)
|
||||
*(COMMON)
|
||||
_end = . ;
|
||||
__end = . ;
|
||||
|
||||
Reference in New Issue
Block a user