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> 2006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Add preinstall.am. * Makefile.am: Add preinstall.am.

View File

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