summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/erc32/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-08 17:18:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-08 17:18:25 +0000
commit0564ff51230b628d67ac4533a18bd15c92eec208 (patch)
treefec83de13482b4e35818dd1d15aa7603dd338079 /c/src/lib/libbsp/sparc/erc32/startup/linkcmds
parent2006-02-08 Thomas Rauscher <trauscher@loytec.com> (diff)
downloadrtems-0564ff51230b628d67ac4533a18bd15c92eec208.tar.bz2
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add sections required by newer gcc versions.
Diffstat (limited to 'c/src/lib/libbsp/sparc/erc32/startup/linkcmds')
-rw-r--r--c/src/lib/libbsp/sparc/erc32/startup/linkcmds4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/sparc/erc32/startup/linkcmds b/c/src/lib/libbsp/sparc/erc32/startup/linkcmds
index 4e4cf03cac..f2ef674f7e 100644
--- a/c/src/lib/libbsp/sparc/erc32/startup/linkcmds
+++ b/c/src/lib/libbsp/sparc/erc32/startup/linkcmds
@@ -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);