summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-06 18:04:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-06 18:04:34 +0000
commit01c36de4f23e7978cfde00d62436e0d3243e95c3 (patch)
treec6afda620ea72e8d5509a2a80bb1ead5e623b130 /c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds
parentAdded convert stanza to generate pdf version of figures from eps. (diff)
downloadrtems-01c36de4f23e7978cfde00d62436e0d3243e95c3.tar.bz2
Added more sections and made minor modifications to let the linkcmds
work with m68k-elf on late model versions of binutils (990901+) without overlapping or missing section errors.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds')
-rw-r--r--c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds13
1 files changed, 13 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds b/c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds
index 15c1ecf8e8..24b487fef3 100644
--- a/c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds
@@ -33,6 +33,11 @@ SECTIONS
*(.text)
. = ALIGN (16);
+ *(.gnu.linkonce.t.*)
+ *(.descriptors)
+ /* .gnu.warning sections are handled specially by elf32.em. */
+ *(.gnu.warning)
+
*(.eh_fram)
. = ALIGN (16);
@@ -49,6 +54,12 @@ SECTIONS
*(.dtors)
LONG(0)
__DTOR_END__ = .;
+
+ _rodata_start = . ;
+ *(.rodata)
+ *(.gnu.linkonce.r*)
+ _erodata = ALIGN( 0x10 ) ;
+
etext = ALIGN( 0x10 ) ;
_etext = .;
}
@@ -57,6 +68,8 @@ SECTIONS
data_start = . ;
_data_start = .;
*(.data)
+ *(.gnu.linkonce.d*)
+ *(.gcc_except_table)
edata = ALIGN( 0x10 ) ;
_edata = .;
}