forked from Imagelibrary/rtems
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:
@@ -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>
|
||||
|
||||
* Makefile.am: Add preinstall.am.
|
||||
|
||||
@@ -112,7 +112,7 @@ SECTIONS
|
||||
.plt : { *(.plt) }
|
||||
.text . :
|
||||
{
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.stub)
|
||||
|
||||
/*
|
||||
@@ -171,11 +171,11 @@ SECTIONS
|
||||
_edata = .;
|
||||
PROVIDE (edata = .);
|
||||
__bss_start = .;
|
||||
.sbss . : { *(.sbss) *(.scommon) }
|
||||
.sbss . : { *(.sbss*) *(.scommon) }
|
||||
.bss . :
|
||||
{
|
||||
*(.dynbss)
|
||||
*(.bss)
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
} > ram
|
||||
_end = . ;
|
||||
|
||||
@@ -113,7 +113,7 @@ SECTIONS
|
||||
.plt : { *(.plt) }
|
||||
.text . :
|
||||
{
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.stub)
|
||||
|
||||
/*
|
||||
@@ -166,11 +166,11 @@ SECTIONS
|
||||
_edata = .;
|
||||
PROVIDE (edata = .);
|
||||
__bss_start = .;
|
||||
.sbss . : { *(.sbss) *(.scommon) }
|
||||
.sbss . : { *(.sbss*) *(.scommon) }
|
||||
.bss . :
|
||||
{
|
||||
*(.dynbss)
|
||||
*(.bss)
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
} > ram
|
||||
_end = . ;
|
||||
|
||||
@@ -114,7 +114,7 @@ SECTIONS
|
||||
.plt : { *(.plt) }
|
||||
.text . :
|
||||
{
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.stub)
|
||||
|
||||
/*
|
||||
@@ -167,11 +167,11 @@ SECTIONS
|
||||
_edata = .;
|
||||
PROVIDE (edata = .);
|
||||
__bss_start = .;
|
||||
.sbss . : { *(.sbss) *(.scommon) }
|
||||
.sbss . : { *(.sbss*) *(.scommon) }
|
||||
.bss . :
|
||||
{
|
||||
*(.dynbss)
|
||||
*(.bss)
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
} > ram
|
||||
_end = . ;
|
||||
|
||||
Reference in New Issue
Block a user