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

* startup/linkcmds: Add sections required by newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 17:18:25 +00:00
parent 2eaf499375
commit 0564ff5123
8 changed files with 24 additions and 8 deletions

View File

@@ -1,3 +1,7 @@
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add sections required by newer gcc versions.
2006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Remove explicit ampolish3 support (now in

View File

@@ -91,7 +91,7 @@ SECTIONS
CREATE_OBJECT_SYMBOLS
text_start = .;
_text_start = .;
*(.text)
*(.text*)
. = ALIGN (16);
@@ -168,7 +168,7 @@ SECTIONS
__bss_start = ALIGN(0x8);
_bss_start = .;
bss_start = .;
*(.bss)
*(.bss*)
*(COMMON)
end = .;
_end = ALIGN(0x8);