diff options
author | Nick Clifton <nickc@redhat.com> | 2011-08-19 14:57:50 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-08-19 14:57:50 +0000 |
commit | 4fb059e5bb927c9baa9afc76163659e0eafc8b23 (patch) | |
tree | 5c8d801aeb07ce133b0e81aac34d9a6a7299e82c | |
parent | e8fdf15a7581d8ad22e99c50cb55fb1168fb4a7f (diff) | |
download | newlib-4fb059e5bb927c9baa9afc76163659e0eafc8b23.zip newlib-4fb059e5bb927c9baa9afc76163659e0eafc8b23.tar.gz newlib-4fb059e5bb927c9baa9afc76163659e0eafc8b23.tar.bz2 |
* iq2000/sim.ld (.gcc_except_table): Include .gcc_except_table.foo
sections as well.
-rw-r--r-- | libgloss/ChangeLog | 5 | ||||
-rw-r--r-- | libgloss/iq2000/sim.ld | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 2b24466..fcdb5f5 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2011-08-19 Nick Clifton <nickc@redhat.com> + + * iq2000/sim.ld (.gcc_except_table): Include .gcc_except_table.foo + sections as well. + 2011-08-08 Mike Stump <mikestump@comcast.net> * Makefile.in: Make stmp-bsp and install consistent with diff --git a/libgloss/iq2000/sim.ld b/libgloss/iq2000/sim.ld index 5f59d02..50da49e 100644 --- a/libgloss/iq2000/sim.ld +++ b/libgloss/iq2000/sim.ld @@ -156,7 +156,7 @@ SECTIONS LONG (0); PROVIDE (__eh_frame_end = .); } - .gcc_except_table : { *(.gcc_except_table) } + .gcc_except_table : { *(.gcc_except_table) *(.gcc_except_table.*) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } .dynstr : { *(.dynstr) } |