From e01c5cce7578b375059e2de0f6f6f291af6505bc Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Tue, 6 Dec 2005 22:04:29 +0000 Subject: 2005-12-06 Paul Brook * m68k/bcc.ld: Add .text.*, .rodata.*, .data.* and .bss.*. * m68k/idp.ld: Ditto. * m68k/idpgdb: Ditto. * m68k/mvme135.ld: Ditto. * m68k/sbc5204.ld: Ditto. * m68k/sbc5206.ld: Ditto. * m68k/sim.ld: Ditto. --- libgloss/m68k/bcc.ld | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libgloss/m68k/bcc.ld') diff --git a/libgloss/m68k/bcc.ld b/libgloss/m68k/bcc.ld index 65f6441ef..562a79a3f 100644 --- a/libgloss/m68k/bcc.ld +++ b/libgloss/m68k/bcc.ld @@ -63,7 +63,7 @@ SECTIONS { .text : { - *(.text) + *(.text .text.*) . = ALIGN(0x4); __CTOR_LIST__ = .; ___CTOR_LIST__ = .; @@ -77,7 +77,7 @@ SECTIONS *(.dtors) LONG(0) __DTOR_END__ = .; - *(.rodata) + *(.rodata .rodata.*) *(.gcc_except_table) . = ALIGN(0x2); @@ -100,7 +100,7 @@ SECTIONS .data : { *(.shdata) - *(.data) + *(.data .data.*) _edata = .; } > ram @@ -109,7 +109,7 @@ SECTIONS . = ALIGN(0x4); __bss_start = . ; *(.shbss) - *(.bss) + *(.bss .bss.*) *(COMMON) _end = ALIGN (0x8); __end = _end; -- cgit v1.2.3