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:
Joel Sherrill
2006-02-08 12:25:04 +00:00
parent 8b1b107f41
commit c50fb1c5cb
4 changed files with 11 additions and 6 deletions

View File

@@ -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.

View File

@@ -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 = .);

View File

@@ -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 = .);

View File

@@ -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 = .);