* startup/linkcmds: added *(.text.*) *(.data.*) *(.bss.*)

This commit is contained in:
Till Straumann
2006-09-04 23:24:08 +00:00
parent 7f247f3c25
commit f74578a205
2 changed files with 7 additions and 0 deletions

View File

@@ -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.

View File

@@ -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 = . ;