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.*.
This commit is contained in:
parent
255e7e559e
commit
3924c5c780
|
@ -1,3 +1,12 @@
|
||||||
|
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.*.
|
||||||
|
|
||||||
2005-08-30 Jeff Johnston <jjohnstn@redhat.com>
|
2005-08-30 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* rs6000/Makefile.in (VPATH): Use colon as separator.
|
* rs6000/Makefile.in (VPATH): Use colon as separator.
|
||||||
|
|
|
@ -88,7 +88,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -140,13 +140,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
_gp = ALIGN(16) + 0x8000;
|
_gp = ALIGN(16) + 0x8000;
|
||||||
.lit8 : {
|
.lit8 : {
|
||||||
|
@ -172,6 +172,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
end = .;
|
end = .;
|
||||||
|
|
|
@ -36,7 +36,7 @@ SECTIONS
|
||||||
PROVIDE (eprol = .);
|
PROVIDE (eprol = .);
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
}
|
}
|
||||||
|
@ -95,13 +95,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -130,6 +130,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -89,13 +89,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -124,6 +124,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -89,13 +89,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -124,6 +124,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -89,13 +89,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -125,6 +125,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ SECTIONS
|
||||||
PROVIDE (eprol = .);
|
PROVIDE (eprol = .);
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
}
|
}
|
||||||
|
@ -96,13 +96,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -131,6 +131,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
||||||
PROVIDE (eprol = .);
|
PROVIDE (eprol = .);
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
}
|
}
|
||||||
|
@ -98,13 +98,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -133,6 +133,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
||||||
PROVIDE (eprol = .);
|
PROVIDE (eprol = .);
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
}
|
}
|
||||||
|
@ -97,13 +97,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -132,6 +132,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -54,13 +54,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -90,6 +90,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
end = .;
|
end = .;
|
||||||
|
|
|
@ -39,7 +39,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -54,13 +54,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -90,6 +90,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. += 0x2000 ; /* 8k bytes of stack. */
|
. += 0x2000 ; /* 8k bytes of stack. */
|
||||||
__stack = ALIGN(64) ;
|
__stack = ALIGN(64) ;
|
||||||
|
|
|
@ -36,7 +36,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -88,13 +88,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -123,6 +123,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. += 0x2000 ; /* 8k bytes of stack. */
|
. += 0x2000 ; /* 8k bytes of stack. */
|
||||||
__stack = ALIGN(64) ;
|
__stack = ALIGN(64) ;
|
||||||
|
|
|
@ -41,7 +41,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -56,13 +56,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -92,6 +92,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -53,13 +53,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -89,6 +89,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
*(.rel.sdata)
|
*(.rel.sdata)
|
||||||
PROVIDE (__runtime_reloc_stop = .);
|
PROVIDE (__runtime_reloc_stop = .);
|
||||||
|
@ -88,13 +88,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
|
@ -123,6 +123,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
end = .;
|
end = .;
|
||||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -90,13 +90,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -125,6 +125,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
. = ALIGN(64) ;
|
. = ALIGN(64) ;
|
||||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
||||||
eprol = .;
|
eprol = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.gnu.linkonce.t*)
|
*(.gnu.linkonce.t.*)
|
||||||
*(.mips16.fn.*)
|
*(.mips16.fn.*)
|
||||||
*(.mips16.call.*)
|
*(.mips16.call.*)
|
||||||
PROVIDE (__runtime_reloc_start = .);
|
PROVIDE (__runtime_reloc_start = .);
|
||||||
|
@ -90,13 +90,13 @@ SECTIONS
|
||||||
*(.rdata)
|
*(.rdata)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
*(.rodata.*)
|
*(.rodata.*)
|
||||||
*(.gnu.linkonce.r*)
|
*(.gnu.linkonce.r.*)
|
||||||
}
|
}
|
||||||
_fdata = ALIGN(16);
|
_fdata = ALIGN(16);
|
||||||
.data : {
|
.data : {
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d.*)
|
||||||
}
|
}
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
_gp = . + 0x8000;
|
_gp = . + 0x8000;
|
||||||
|
@ -125,6 +125,7 @@ SECTIONS
|
||||||
.bss : {
|
.bss : {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue