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:
Diffstat (limited to 'libgloss/m68k/mvme135.ld')
-rw-r--r--libgloss/m68k/mvme135.ld9
1 files changed, 4 insertions, 5 deletions
diff --git a/libgloss/m68k/mvme135.ld b/libgloss/m68k/mvme135.ld
index fd52e4e3f..dba0dbe23 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);
@@ -100,9 +100,8 @@ SECTIONS
.data :
{
- *(.got.plt) *(.got)
*(.shdata)
- *(.data .data.*)
+ *(.data)
_edata = .;
} > ram
@@ -111,7 +110,7 @@ SECTIONS
. = ALIGN(0x4);
__bss_start = . ;
*(.shbss)
- *(.bss .bss.*)
+ *(.bss)
*(COMMON)
_end = ALIGN (0x8);
__end = _end;