summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-06 18:05:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-06 18:05:39 +0000
commitadd0545d820f261e9969c650908c79aeeafe3e17 (patch)
treeaa679ed3a4626d67f3adb1d3ffe5a868932c3c14 /c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds
parentAdded more sections and made minor modifications to let the linkcmds (diff)
downloadrtems-add0545d820f261e9969c650908c79aeeafe3e17.tar.bz2
Added sections as required by C++ and ELF.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds4
1 files changed, 3 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds b/c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds
index 7f4f3cf330..31077da013 100644
--- a/c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds
+++ b/c/src/lib/libbsp/powerpc/ppcn_60x/startup/linkcmds
@@ -44,13 +44,14 @@ SECTIONS
.text :
{
*(.text)
+ *(.gnu.linkonce.t.*)
*(.descriptors)
/* .gnu.warning sections are handled specially by elf32.em. */
*(.gnu.warning)
} =0
.init : { *(.init) } =0
.fini : { *(.fini) } =0
- .rodata : { *(.rodata) }
+ .rodata : { *(.rodata) *(.gnu.linkonce.r*) }
.rodata1 : { *(.rodata1) }
_etext = .;
PROVIDE (etext = .);
@@ -78,6 +79,7 @@ SECTIONS
.data :
{
*(.data)
+ *(.gnu.linkonce.d.*)
CONSTRUCTORS
}
PROVIDE (__EXCEPT_START__ = .);