2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>

* startup/linkcmds, startup/linkcmds.brs5l, startup/linkcmds.icecube,
	startup/linkcmds.pm520: Add wildcard to gcc_except_table section so
	programs compiled with gcc 4.3.x can link.
This commit is contained in:
Joel Sherrill
2008-03-04 22:34:55 +00:00
parent ff1e20f46a
commit 8ae2a26e24
5 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds, startup/linkcmds.brs5l, startup/linkcmds.icecube,
startup/linkcmds.pm520: Add wildcard to gcc_except_table section so
programs compiled with gcc 4.3.x can link.
2008-02-14 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds.brs5l: Change .bss to .bss*.

View File

@@ -137,7 +137,7 @@ SECTIONS
_erodata = .;
PROVIDE (__EXCEPT_START__ = .);
*(.gcc_except_table)
*(.gcc_except_table*)
PROVIDE (__EXCEPT_END__ = .);
__GOT_START__ = .;
s.got = .;

View File

@@ -139,7 +139,7 @@ SECTIONS
_erodata = .;
PROVIDE (__EXCEPT_START__ = .);
*(.gcc_except_table)
*(.gcc_except_table*)
PROVIDE (__EXCEPT_END__ = .);
__GOT_START__ = .;
s.got = .;

View File

@@ -151,7 +151,7 @@ SECTIONS
.jcr : { KEEP (*(.jcr)) } >ram
PROVIDE (__EXCEPT_START__ = .);
.gcc_except_table : { *(.gcc_except_table) } >ram
.gcc_except_table : { *(.gcc_except_table*) } >ram
PROVIDE (__EXCEPT_END__ = .);
__GOT_START__ = .;
.got :

View File

@@ -136,7 +136,7 @@ SECTIONS
_erodata = .;
PROVIDE (__EXCEPT_START__ = .);
*(.gcc_except_table)
*(.gcc_except_table*)
PROVIDE (__EXCEPT_END__ = .);
__GOT_START__ = .;
s.got = .;