summaryrefslogtreecommitdiffstats
path: root/libgloss/mips/cfe.ld
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/mips/cfe.ld')
-rw-r--r--libgloss/mips/cfe.ld7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgloss/mips/cfe.ld b/libgloss/mips/cfe.ld
index 116f54f16..b14f068a2 100644
--- a/libgloss/mips/cfe.ld
+++ b/libgloss/mips/cfe.ld
@@ -36,7 +36,7 @@ SECTIONS
PROVIDE (eprol = .);
*(.text)
*(.text.*)
- *(.gnu.linkonce.t*)
+ *(.gnu.linkonce.t.*)
*(.mips16.fn.*)
*(.mips16.call.*)
}
@@ -95,13 +95,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;
@@ -130,6 +130,7 @@ SECTIONS
.bss : {
_bss_start = . ;
*(.bss)
+ *(.gnu.linkonce.b.*)
*(COMMON)
}