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

* startup/linkcmds, startup/linkcmds_ROM: Add sections required by
	newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 12:25:24 +00:00
parent cdb3ff9c52
commit ff167ec45c
3 changed files with 9 additions and 4 deletions

View File

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

@@ -59,7 +59,7 @@ SECTIONS
* Text, data and bss segments * Text, data and bss segments
*/ */
.text : { .text : {
*(.text) *(.text*)
/* /*
* C++ constructors/destructors * C++ constructors/destructors
@@ -150,7 +150,7 @@ SECTIONS
.bss : { .bss : {
_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 = .);

View File

@@ -63,7 +63,7 @@ SECTIONS
CREATE_OBJECT_SYMBOLS CREATE_OBJECT_SYMBOLS
text_start = .; text_start = .;
_text_start = .; _text_start = .;
*(.text) *(.text*)
. = ALIGN (16); . = ALIGN (16);
@@ -180,7 +180,7 @@ SECTIONS
_clear_start = .; _clear_start = .;
*(.shbss) *(.shbss)
*(.dynbss) *(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*) *(.bss* .gnu.linkonce.b.*)
*(COMMON) *(COMMON)
. = ALIGN (16); . = ALIGN (16);
end = .; end = .;