Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2005-12-07 01:04:29 +0300
committerJeff Johnston <jjohnstn@redhat.com>2005-12-07 01:04:29 +0300
commite01c5cce7578b375059e2de0f6f6f291af6505bc (patch)
treea1149ea1b6c76c2dd83af229761e9eb2afeda1df /libgloss/m68k/mvme135.ld
parent77e70d34ce5c54ed93fc3212d6bff80a9a54cdbd (diff)
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/mvme135.ld')
-rw-r--r--libgloss/m68k/mvme135.ld8
1 files changed, 4 insertions, 4 deletions
diff --git a/libgloss/m68k/mvme135.ld b/libgloss/m68k/mvme135.ld
index dba0dbe23..8b6563005 100644
--- a/libgloss/m68k/mvme135.ld
+++ b/libgloss/m68k/mvme135.ld
@@ -64,7 +64,7 @@ SECTIONS
{
.text :
{
- *(.text)
+ *(.text .text.*)
. = ALIGN(0x4);
__CTOR_LIST__ = .;
___CTOR_LIST__ = .;
@@ -78,7 +78,7 @@ SECTIONS
*(.dtors)
LONG(0)
__DTOR_END__ = .;
- *(.rodata)
+ *(.rodata .rodata.*)
*(.gcc_except_table)
. = ALIGN(0x2);
@@ -101,7 +101,7 @@ SECTIONS
.data :
{
*(.shdata)
- *(.data)
+ *(.data .data.*)
_edata = .;
} > ram
@@ -110,7 +110,7 @@ SECTIONS
. = ALIGN(0x4);
__bss_start = . ;
*(.shbss)
- *(.bss)
+ *(.bss .bss.*)
*(COMMON)
_end = ALIGN (0x8);
__end = _end;