diff options
author | Nick Clifton <nickc@redhat.com> | 2010-06-29 09:39:30 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-06-29 09:39:30 +0000 |
commit | a6076c2cdcf13af80a860682636894241bb4b0e2 (patch) | |
tree | 96703d4c8e50fa29d86367321f753312d7f109da /libgloss/xstormy16 | |
parent | 37cd59cbefe797053202b0ab4724c607a090e487 (diff) | |
download | newlib-a6076c2cdcf13af80a860682636894241bb4b0e2.zip newlib-a6076c2cdcf13af80a860682636894241bb4b0e2.tar.gz newlib-a6076c2cdcf13af80a860682636894241bb4b0e2.tar.bz2 |
* 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.
Diffstat (limited to 'libgloss/xstormy16')
-rw-r--r-- | libgloss/xstormy16/eva_app.ld | 2 | ||||
-rw-r--r-- | libgloss/xstormy16/eva_stub.ld | 2 | ||||
-rw-r--r-- | libgloss/xstormy16/sim_high.ld | 2 | ||||
-rw-r--r-- | libgloss/xstormy16/sim_rom.ld | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libgloss/xstormy16/eva_app.ld b/libgloss/xstormy16/eva_app.ld index 6699b05..f4ee258 100644 --- a/libgloss/xstormy16/eva_app.ld +++ b/libgloss/xstormy16/eva_app.ld @@ -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 = .; diff --git a/libgloss/xstormy16/eva_stub.ld b/libgloss/xstormy16/eva_stub.ld index 34f3b91..a7d63b3 100644 --- a/libgloss/xstormy16/eva_stub.ld +++ b/libgloss/xstormy16/eva_stub.ld @@ -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 : diff --git a/libgloss/xstormy16/sim_high.ld b/libgloss/xstormy16/sim_high.ld index a7f4aa0..a5142c5 100644 --- a/libgloss/xstormy16/sim_high.ld +++ b/libgloss/xstormy16/sim_high.ld @@ -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 : diff --git a/libgloss/xstormy16/sim_rom.ld b/libgloss/xstormy16/sim_rom.ld index e7ef6fb..297fbc3 100644 --- a/libgloss/xstormy16/sim_rom.ld +++ b/libgloss/xstormy16/sim_rom.ld @@ -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 : { |