* m68k/fido.sc (.data): Move .jcr to .text. Catch .got.plt
and .got.
This commit is contained in:
parent
54db82c72c
commit
f8d7231006
|
@ -1,3 +1,8 @@
|
||||||
|
2007-05-23 Kazu Hirata <kazu@codesourcery.com>
|
||||||
|
|
||||||
|
* m68k/fido.sc (.data): Move .jcr to .text. Catch .got.plt
|
||||||
|
and .got.
|
||||||
|
|
||||||
2007-05-07 Patrick Mansfield <patmans@us.ibm.com>
|
2007-05-07 Patrick Mansfield <patmans@us.ibm.com>
|
||||||
|
|
||||||
* spu/open.c: Unconditionally set the "mode" to fix a bug where
|
* spu/open.c: Unconditionally set the "mode" to fix a bug where
|
||||||
|
|
|
@ -156,6 +156,11 @@ SECTIONS {
|
||||||
KEEP (*(SORT(.dtors.*)))
|
KEEP (*(SORT(.dtors.*)))
|
||||||
KEEP (*crtend.o(.dtors))
|
KEEP (*crtend.o(.dtors))
|
||||||
|
|
||||||
|
. = ALIGN(0x4);
|
||||||
|
KEEP (*crtbegin.o(.jcr))
|
||||||
|
KEEP (*(EXCLUDE_FILE (*crtend.o) .jcr))
|
||||||
|
KEEP (*crtend.o(.jcr))
|
||||||
|
|
||||||
*(.rodata .rodata.*)
|
*(.rodata .rodata.*)
|
||||||
*(.gnu.linkonce.r.*)
|
*(.gnu.linkonce.r.*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
|
@ -187,7 +192,7 @@ SECTIONS {
|
||||||
.data :
|
.data :
|
||||||
{
|
{
|
||||||
_data = .;
|
_data = .;
|
||||||
KEEP (*(.jcr));
|
*(.got.plt) *(.got)
|
||||||
*(.shdata);
|
*(.shdata);
|
||||||
*(.data .data.*)
|
*(.data .data.*)
|
||||||
*(.gnu.linkonce.d.*)
|
*(.gnu.linkonce.d.*)
|
||||||
|
|
Loading…
Reference in New Issue