forked from Imagelibrary/rtems
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: 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.bootp, startup/linkcmds.prom: 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.
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ SECTIONS {
|
|||||||
* Text, data and bss segments
|
* Text, data and bss segments
|
||||||
*/
|
*/
|
||||||
.text : {
|
.text : {
|
||||||
*(.text)
|
*(.text*)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* C++ constructors/destructors
|
* C++ constructors/destructors
|
||||||
@@ -123,7 +123,7 @@ SECTIONS {
|
|||||||
. += (256 * 4);
|
. += (256 * 4);
|
||||||
_clear_start = .;
|
_clear_start = .;
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
PROVIDE (end = .);
|
PROVIDE (end = .);
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ SECTIONS {
|
|||||||
* Text, data and bss segments
|
* Text, data and bss segments
|
||||||
*/
|
*/
|
||||||
.text : AT(0x0) {
|
.text : AT(0x0) {
|
||||||
*(.text)
|
*(.text*)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* C++ constructors/destructors
|
* C++ constructors/destructors
|
||||||
@@ -128,7 +128,7 @@ SECTIONS {
|
|||||||
. += (256 * 4);
|
. += (256 * 4);
|
||||||
_clear_start = .;
|
_clear_start = .;
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
PROVIDE (end = .);
|
PROVIDE (end = .);
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ SECTIONS {
|
|||||||
* Text, data and bss segments
|
* Text, data and bss segments
|
||||||
*/
|
*/
|
||||||
.text : AT(0x0) {
|
.text : AT(0x0) {
|
||||||
*(.text)
|
*(.text*)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* C++ constructors/destructors
|
* C++ constructors/destructors
|
||||||
@@ -126,7 +126,7 @@ SECTIONS {
|
|||||||
M68Kvec = .;
|
M68Kvec = .;
|
||||||
. += (256 * 4);
|
. += (256 * 4);
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
PROVIDE (end = .);
|
PROVIDE (end = .);
|
||||||
|
|||||||
Reference in New Issue
Block a user