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-09-23 19:51:10 +0400
committerJeff Johnston <jjohnstn@redhat.com>2005-09-23 19:51:10 +0400
commit3924c5c780e5dd339f37594f101b753f4ca2dfe9 (patch)
tree5e729c99e593ec4bceb4290852a7b26b9c33834f /libgloss/mips/ddb.ld
parent255e7e559ee76ca82cf30aa47486ec8736d88521 (diff)
2005-09-23 James E Wilson <wilson@specifix.com>
* mips/array.ld, mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld, mips/dve.ld, mips/idt.ld, mips/idt32.ld, mips/idt64.ld, mips/idtecoff.ld, mips/jmr3904app-java.ld, mips/jmr3904app.ld, jmr3904dram-java.ld, mips/jmr3904dram.ld, mips/lsi.ld, mips/nullmon.ld, mips/pmon.ld: Change x* to x.* in existing linkonce lines. Add support for .gnu.linkonce.b.*.
Diffstat (limited to 'libgloss/mips/ddb.ld')
-rw-r--r--libgloss/mips/ddb.ld7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgloss/mips/ddb.ld b/libgloss/mips/ddb.ld
index 8c7fb2c2d..83aeb2527 100644
--- a/libgloss/mips/ddb.ld
+++ b/libgloss/mips/ddb.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)
}