diff options
author | Kevin Buettner <kevinb@redhat.com> | 2007-07-13 17:32:21 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2007-07-13 17:32:21 +0000 |
commit | 73d309ce3ee9c30d5a3365c78278e5eac914ddba (patch) | |
tree | fab7f23cfb50e189c588b22fba15131f4868d363 /libgloss/mep | |
parent | 88c8888127d1612032a869b4b73c707233beae4b (diff) | |
download | newlib-73d309ce3ee9c30d5a3365c78278e5eac914ddba.zip newlib-73d309ce3ee9c30d5a3365c78278e5eac914ddba.tar.gz newlib-73d309ce3ee9c30d5a3365c78278e5eac914ddba.tar.bz2 |
* mep/fmax.ld, mep/gmap_default.ld, mep/min.ld, mep/simple.ld
(.gcc_except_table): Add pattern for .gcc_except_table.*.
Diffstat (limited to 'libgloss/mep')
-rw-r--r-- | libgloss/mep/fmax.ld | 2 | ||||
-rw-r--r-- | libgloss/mep/gmap_default.ld | 2 | ||||
-rw-r--r-- | libgloss/mep/min.ld | 2 | ||||
-rw-r--r-- | libgloss/mep/simple.ld | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libgloss/mep/fmax.ld b/libgloss/mep/fmax.ld index 6141182..b651ca5 100644 --- a/libgloss/mep/fmax.ld +++ b/libgloss/mep/fmax.ld @@ -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 : { diff --git a/libgloss/mep/gmap_default.ld b/libgloss/mep/gmap_default.ld index b4dd5fb..c625c7e 100644 --- a/libgloss/mep/gmap_default.ld +++ b/libgloss/mep/gmap_default.ld @@ -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 : { diff --git a/libgloss/mep/min.ld b/libgloss/mep/min.ld index 59988ec..265fb19 100644 --- a/libgloss/mep/min.ld +++ b/libgloss/mep/min.ld @@ -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.*) } diff --git a/libgloss/mep/simple.ld b/libgloss/mep/simple.ld index 5cbef18..96d68fc 100644 --- a/libgloss/mep/simple.ld +++ b/libgloss/mep/simple.ld @@ -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 : { |