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

* startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
	sections required by newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 12:27:59 +00:00
parent c177d27283
commit ae3ab7451b
4 changed files with 14 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: 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

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

View File

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

View File

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