* sparc/elfsim.ld: Fix __EH_FRAME_BEGIN__ definition.
* sparc/sparc86x.ld: Likewise.
This commit is contained in:
parent
ff57520702
commit
c01c82c07c
|
@ -1,3 +1,8 @@
|
|||
2003-08-26 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* sparc/elfsim.ld: Fix __EH_FRAME_BEGIN__ definition.
|
||||
* sparc/sparc86x.ld: Likewise.
|
||||
|
||||
2003-08-20 Chris Demetriou <cgd@broadcom.com>
|
||||
|
||||
* mips/crt0_cfe.S: New file.
|
||||
|
|
|
@ -95,7 +95,6 @@ SECTIONS
|
|||
{
|
||||
_stext = .;
|
||||
PROVIDE (stext = .);
|
||||
__EH_FRAME_BEGIN__ = .;
|
||||
*(.text)
|
||||
_etext = .;
|
||||
PROVIDE (etext = .);
|
||||
|
@ -123,6 +122,7 @@ SECTIONS
|
|||
*(.lit)
|
||||
*(.rodata)
|
||||
*(.shdata)
|
||||
__EH_FRAME_BEGIN__ = .;
|
||||
*(.eh_frame)
|
||||
*(.gnu.linkonce.t*)
|
||||
*(.gnu.linkonce.r*)
|
||||
|
|
|
@ -82,7 +82,6 @@ SECTIONS
|
|||
.text : {
|
||||
stext = .;
|
||||
_stext = .;
|
||||
__EH_FRAME_BEGIN__ = .;
|
||||
|
||||
CREATE_OBJECT_SYMBOLS
|
||||
*(.text)
|
||||
|
@ -108,6 +107,7 @@ SECTIONS
|
|||
*(.lit)
|
||||
*(.rodata)
|
||||
*(.shdata)
|
||||
__EH_FRAME_BEGIN__ = .;
|
||||
*(.eh_frame)
|
||||
*(.gnu.linkonce.t*)
|
||||
*(.gnu.linkonce.r*)
|
||||
|
|
Loading…
Reference in New Issue