summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/leon3/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-08 12:28:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-08 12:28:38 +0000
commit4217b965eb33a21324e368e82a05fe6aa3aa99bb (patch)
tree7854cdaea123c1ee9796fa9a8311ae996990336f /c/src/lib/libbsp/sparc/leon3/startup/linkcmds
parent2006-02-08 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-4217b965eb33a21324e368e82a05fe6aa3aa99bb.tar.bz2
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add sections required by newer gcc versions.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/sparc/leon3/startup/linkcmds4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/sparc/leon3/startup/linkcmds b/c/src/lib/libbsp/sparc/leon3/startup/linkcmds
index 4e4f06f2a6..7326cc7c4b 100644
--- a/c/src/lib/libbsp/sparc/leon3/startup/linkcmds
+++ b/c/src/lib/libbsp/sparc/leon3/startup/linkcmds
@@ -91,7 +91,7 @@ SECTIONS
CREATE_OBJECT_SYMBOLS
text_start = .;
_text_start = .;
- *(.text)
+ *(.text*)
. = ALIGN (16);
/*
@@ -167,7 +167,7 @@ SECTIONS
__bss_start = ALIGN(0x8);
_bss_start = .;
bss_start = .;
- *(.bss)
+ *(.bss*)
*(COMMON)
end = .;
_end = ALIGN(0x8);