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

* startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
	sections required by newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 12:28:11 +00:00
parent 869eaa9734
commit 350808f984
4 changed files with 14 additions and 12 deletions

View File

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

View File

@@ -79,7 +79,7 @@ SECTIONS
.plt : { *(.plt) }
.text . :
{
*(.text)
*(.text*)
*(.stub)
/*
@@ -138,11 +138,11 @@ SECTIONS
_edata = .;
PROVIDE (edata = .);
__bss_start = .;
.sbss . : { *(.sbss) *(.scommon) }
.sbss . : { *(.sbss*) *(.scommon) }
.bss . :
{
*(.dynbss)
*(.bss)
*(.bss*)
*(COMMON)
} > ram
_end = . ;

View File

@@ -100,8 +100,7 @@ SECTIONS
.text :
{
. = . + 16;
*(.text)
*(.text.*)
*(.text*)
*(.stub)
/*
@@ -191,15 +190,13 @@ SECTIONS
.sbss :
{
*(.dynsbss)
*(.sbss)
*(.sbss.*)
*(.sbss*)
*(.scommon)
} > ram
.bss :
{
*(.dynbss)
*(.bss)
*(.bss.*)
*(.bss*)
*(COMMON)
/* Align here to ensure that the .bss section occupies space up to
_end. Align after .bss to ensure correct alignment even if the

View File

@@ -78,7 +78,7 @@ SECTIONS
.plt : { *(.plt) }
.text . :
{
*(.text)
*(.text*)
*(.stub)
/*
@@ -137,11 +137,11 @@ SECTIONS
_edata = .;
PROVIDE (edata = .);
__bss_start = .;
.sbss . : { *(.sbss) *(.scommon) }
.sbss . : { *(.sbss*) *(.scommon) }
.bss . :
{
*(.dynbss)
*(.bss)
*(.bss*)
*(COMMON)
} > ram
_end = . ;