2006-02-08 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds: Add sections required by newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 17:59:06 +00:00
parent 0564ff5123
commit 4bbea13f80
2 changed files with 8 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add sections required by newer gcc versions.
2006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Add preinstall.am.

View File

@@ -32,8 +32,7 @@ SECTIONS
*/start.o(.text)
*(.text)
*(.text.*)
*(.text*)
*(.gnu.linkonce.t*)
*(.mips16.fn.*)
*(.mips16.call.*)
@@ -145,8 +144,7 @@ SECTIONS
.sdata :
{
*(.sdata)
*(.sdata.*)
*(.sdata*)
*(.gnu.linkonce.s*)
} >ram
@@ -155,7 +153,7 @@ SECTIONS
edata = .;
_edata = .;
_fbss = .;
*(.sbss)
*(.sbss*)
*(.scommon)
} >ram
@@ -163,7 +161,7 @@ SECTIONS
.bss :
{
_bss_start = . ;
*(.bss)
*(.bss*)
*(.reginfo)
*(COMMON)
. = ALIGN (64);