* xstormy16/eva_app.ld (.gcc_except_table): Include sections with
the .gcc_except_table. prefix. * xstormy16/eva_stub.ld: Likewise. * xstormy16/sim_high.ld: Likewise. * xstormy16/sim_low.ld: Likewise.
This commit is contained in:
parent
37cd59cbef
commit
a6076c2cdc
|
@ -1,3 +1,11 @@
|
|||
2010-06-29 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* xstormy16/eva_app.ld (.gcc_except_table): Include sections with
|
||||
the .gcc_except_table. prefix.
|
||||
* xstormy16/eva_stub.ld: Likewise.
|
||||
* xstormy16/sim_high.ld: Likewise.
|
||||
* xstormy16/sim_low.ld: Likewise.
|
||||
|
||||
2010-05-03 Michael Eager <eager@eagercon.com>
|
||||
|
||||
* rs6000/Makefile.in: Remove xil-exit.o.
|
||||
|
|
|
@ -53,7 +53,7 @@ SECTIONS
|
|||
KEEP (*(.dtors))
|
||||
} > RAM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > RAM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > RAM
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } > RAM
|
||||
.jcr : { *(.jcr) } > RAM
|
||||
.plt : { *(.plt) } > RAM
|
||||
_edata = .;
|
||||
|
|
|
@ -53,7 +53,7 @@ SECTIONS
|
|||
KEEP (*(.dtors))
|
||||
} > ROM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > ROM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > ROM
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } > ROM
|
||||
.jcr : { *(.jcr) } > ROM
|
||||
.plt : { *(.plt) } > ROM
|
||||
.text :
|
||||
|
|
|
@ -74,7 +74,7 @@ SECTIONS
|
|||
KEEP (*(.dtors))
|
||||
} > LOROM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > LOROM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > LOROM
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } > LOROM
|
||||
.jcr : { *(.jcr) } > LOROM
|
||||
.plt : { *(.plt) } > LOROM
|
||||
.text :
|
||||
|
|
|
@ -47,7 +47,7 @@ SECTIONS
|
|||
} > ROM
|
||||
.jcr : { KEEP (*(.jcr)) } > ROM
|
||||
.eh_frame : { KEEP (*(.eh_frame)) } > ROM
|
||||
.gcc_except_table : { *(.gcc_except_table) } > ROM
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } > ROM
|
||||
.plt : { *(.plt) } > ROM
|
||||
.text :
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue