2005-12-06 Paul Brook <paul@codesourcery.com>

* 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.
This commit is contained in:
Jeff Johnston
2005-12-06 22:04:29 +00:00
parent 77e70d34ce
commit e01c5cce75
9 changed files with 42 additions and 32 deletions

View File

@@ -18,7 +18,7 @@ SECTIONS
.text :
{
CREATE_OBJECT_SYMBOLS
*(.text)
*(.text .text.*)
. = ALIGN(0x4);
/* These are for running static constructors and destructors under ELF. */
@@ -31,7 +31,7 @@ SECTIONS
KEEP (*(SORT(.dtors.*)))
KEEP (*(.dtors))
*(.rodata)
*(.rodata .rodata.*)
. = ALIGN(0x4);
*(.gcc_except_table)
@@ -60,7 +60,7 @@ SECTIONS
.data :
{
*(.shdata)
*(.data)
*(.data .data.*)
_edata = .;
} > ram
@@ -69,7 +69,7 @@ SECTIONS
. = ALIGN(0x4);
__bss_start = . ;
*(.shbss)
*(.bss)
*(.bss .bss.*)
*(COMMON)
_end = ALIGN (0x8);
__end = _end;