forked from Imagelibrary/rtems
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.flash: 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.flash: 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.
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ SECTIONS
|
|||||||
*/
|
*/
|
||||||
.text : {
|
.text : {
|
||||||
CREATE_OBJECT_SYMBOLS
|
CREATE_OBJECT_SYMBOLS
|
||||||
*(.text)
|
*(.text*)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* C++ constructors/destructors
|
* C++ constructors/destructors
|
||||||
@@ -156,7 +156,7 @@ SECTIONS
|
|||||||
clear_start = . ;
|
clear_start = . ;
|
||||||
*(.shbss)
|
*(.shbss)
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(0x10);
|
. = ALIGN(0x10);
|
||||||
_end = .;
|
_end = .;
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ SECTIONS
|
|||||||
*/
|
*/
|
||||||
.text : AT(0x30020000) {
|
.text : AT(0x30020000) {
|
||||||
CREATE_OBJECT_SYMBOLS
|
CREATE_OBJECT_SYMBOLS
|
||||||
*(.text)
|
*(.text*)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* C++ constructors/destructors
|
* C++ constructors/destructors
|
||||||
@@ -160,7 +160,7 @@ SECTIONS
|
|||||||
clear_start = . ;
|
clear_start = . ;
|
||||||
*(.shbss)
|
*(.shbss)
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(0x10);
|
. = ALIGN(0x10);
|
||||||
_end = .;
|
_end = .;
|
||||||
|
|||||||
Reference in New Issue
Block a user