diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-12-06 22:04:29 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-12-06 22:04:29 +0000 |
commit | e01c5cce7578b375059e2de0f6f6f291af6505bc (patch) | |
tree | a1149ea1b6c76c2dd83af229761e9eb2afeda1df /libgloss/m68k/idpgdb.ld | |
parent | 77e70d34ce5c54ed93fc3212d6bff80a9a54cdbd (diff) | |
download | cygnal-e01c5cce7578b375059e2de0f6f6f291af6505bc.tar.gz cygnal-e01c5cce7578b375059e2de0f6f6f291af6505bc.tar.bz2 cygnal-e01c5cce7578b375059e2de0f6f6f291af6505bc.zip |
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.
Diffstat (limited to 'libgloss/m68k/idpgdb.ld')
-rw-r--r-- | libgloss/m68k/idpgdb.ld | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgloss/m68k/idpgdb.ld b/libgloss/m68k/idpgdb.ld index 9d24e28cf..53b56b70c 100644 --- a/libgloss/m68k/idpgdb.ld +++ b/libgloss/m68k/idpgdb.ld @@ -77,7 +77,7 @@ SECTIONS .text : { CREATE_OBJECT_SYMBOLS - *(.text) + *(.text .text.*) . = ALIGN(0x4); /* These are for running static constructors and destructors under ELF. */ @@ -90,7 +90,7 @@ SECTIONS KEEP (*(SORT(.dtors.*))) KEEP (*(.dtors)) - *(.rodata) + *(.rodata .rodata.*) . = ALIGN(0x4); *(.gcc_except_table) @@ -119,7 +119,7 @@ SECTIONS .data : { *(.shdata) - *(.data) + *(.data .data.*) _edata = .; } > ram @@ -128,7 +128,7 @@ SECTIONS . = ALIGN(0x4); __bss_start = . ; *(.shbss) - *(.bss) + *(.bss .bss.*) *(COMMON) _end = ALIGN (0x8); __end = _end; |