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/mips/ddb-kseg0.ld')
-rw-r--r--libgloss/mips/ddb-kseg0.ld7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgloss/mips/ddb-kseg0.ld b/libgloss/mips/ddb-kseg0.ld
index 4dd7d70b6..de5c8ba2a 100644
--- a/libgloss/mips/ddb-kseg0.ld
+++ b/libgloss/mips/ddb-kseg0.ld
@@ -37,7 +37,7 @@ SECTIONS
eprol = .;
*(.text)
*(.text.*)
- *(.gnu.linkonce.t*)
+ *(.gnu.linkonce.t.*)
*(.mips16.fn.*)
*(.mips16.call.*)
PROVIDE (__runtime_reloc_start = .);
@@ -89,13 +89,13 @@ SECTIONS
*(.rdata)
*(.rodata)
*(.rodata.*)
- *(.gnu.linkonce.r*)
+ *(.gnu.linkonce.r.*)
}
_fdata = ALIGN(16);
.data : {
*(.data)
*(.data.*)
- *(.gnu.linkonce.d*)
+ *(.gnu.linkonce.d.*)
}
. = ALIGN(8);
_gp = . + 0x8000;
@@ -124,6 +124,7 @@ SECTIONS
.bss : {
_bss_start = . ;
*(.bss)
+ *(.gnu.linkonce.b.*)
*(COMMON)
}