From 74f3d8fc9256cab6bc5e0662bec359454c9310f4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 5 Oct 1999 19:18:14 +0000 Subject: Corrected so sections did not overlap with new version of binutils. --- c/src/lib/libbsp/m68k/gen68302/startup/linkcmds | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'c') diff --git a/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds b/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds index 031323546d..47cb15608c 100644 --- a/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds +++ b/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds @@ -28,6 +28,10 @@ SECTIONS text_start = . ; *(.text) . = ALIGN (16); + *(.gnu.linkonce.t.*) + *(.descriptors) + /* .gnu.warning sections are handled specially by elf32.em. */ + *(.gnu.warning) *(.eh_fram) . = ALIGN (16); @@ -47,10 +51,12 @@ SECTIONS __DTOR_END__ = .; etext = ALIGN( 0x10 ) ; } + .rodata : { *(.rodata) *(.gnu.linkonce.r*) } >RAM .data 0x010000 : { data_start = . ; *(.data) + *(.gnu.linkonce.d.*) edata = ALIGN( 0x10 ) ; } .bss ADDR( .data ) + SIZEOF( .data ): -- cgit v1.2.3