* mep/fmax.ld, mep/gmap_default.ld, mep/min.ld, mep/simple.ld
(.gcc_except_table): Add pattern for .gcc_except_table.*.
This commit is contained in:
parent
88c8888127
commit
73d309ce3e
|
@ -1,3 +1,8 @@
|
|||
2007-07-13 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* mep/fmax.ld, mep/gmap_default.ld, mep/min.ld, mep/simple.ld
|
||||
(.gcc_except_table): Add pattern for .gcc_except_table.*.
|
||||
|
||||
2007-07-06 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* arm/syscalls.c (gettimeofday): Change to POSIX signature
|
||||
|
|
|
@ -80,7 +80,7 @@ SECTIONS
|
|||
} >RAM1 /* DATA-section */
|
||||
.data1 : { *(.data1) } >RAM1 /* DATA-section */
|
||||
.eh_frame : { KEEP (*(.eh_frame))} >RAM1 /* DATA-section */
|
||||
.gcc_except_table : { *(.gcc_except_table) } >RAM1 /* DATA-section */
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } >RAM1 /* DATA-section */
|
||||
.dynamic : { *(.dynamic) } >RAM1 /* DATA-section */
|
||||
.ctors :
|
||||
{
|
||||
|
|
|
@ -92,7 +92,7 @@ SECTIONS
|
|||
} >RAM /* DATA-section */
|
||||
.data1 : { *(.data1) } >RAM /* DATA-section */
|
||||
.eh_frame : { KEEP (*(.eh_frame))} >RAM /* DATA-section */
|
||||
.gcc_except_table : { *(.gcc_except_table) } >RAM /* DATA-section */
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } >RAM /* DATA-section */
|
||||
.dynamic : { *(.dynamic) } >RAM /* DATA-section */
|
||||
.ctors :
|
||||
{
|
||||
|
|
|
@ -77,7 +77,7 @@ SECTIONS
|
|||
}
|
||||
.data1 : { *(.data1) }
|
||||
.eh_frame : { KEEP (*(.eh_frame)) }
|
||||
.gcc_except_table : { *(.gcc_except_table) }
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) }
|
||||
. = ALIGN(4);
|
||||
__tpbase = .;
|
||||
.based : { *(.based) *(.based.*) *(.gnu.linkonce.based.*) }
|
||||
|
|
|
@ -80,7 +80,7 @@ SECTIONS
|
|||
} >RAM1 /* DATA-section */
|
||||
.data1 : { *(.data1) } >RAM1 /* DATA-section */
|
||||
.eh_frame : { KEEP (*(.eh_frame))} >RAM1 /* DATA-section */
|
||||
.gcc_except_table : { *(.gcc_except_table) } >RAM1 /* DATA-section */
|
||||
.gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } >RAM1 /* DATA-section */
|
||||
.dynamic : { *(.dynamic) } >RAM1 /* DATA-section */
|
||||
.ctors :
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue