forked from Imagelibrary/rtems
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds: Add wildcard to gcc_except_table section so programs compiled with gcc 4.3.x can link.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2007-09-17 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* console/console.c: Eliminate DEBUG_puts.
|
||||
|
||||
@@ -97,7 +97,7 @@ SECTIONS
|
||||
CONSTRUCTORS
|
||||
}
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
.gcc_except_table : { *(.gcc_except_table) }
|
||||
.gcc_except_table : { *(.gcc_except_table*) }
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
|
||||
.data1 : { *(.data1) }
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2007-09-12 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
PR 1257/bsps
|
||||
|
||||
@@ -198,7 +198,7 @@ SECTIONS
|
||||
PROVIDE (__SDATA_END__ = .);
|
||||
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
*(.gcc_except_table)
|
||||
*(.gcc_except_table*)
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
|
||||
PROVIDE(__GOT_START__ = .);
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2007-09-12 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
PR 1257/bsps
|
||||
|
||||
@@ -184,7 +184,7 @@ SECTIONS
|
||||
.rela.plt : { *(.rela.plt) }
|
||||
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
.gcc_except_table : { *(.gcc_except_table) } >ram
|
||||
.gcc_except_table : { *(.gcc_except_table*) } >ram
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
__GOT_START__ = .;
|
||||
.got :
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2007-11-30 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: BSP_DIRTY_MEMORY should be tested for zero not
|
||||
|
||||
@@ -145,7 +145,7 @@ SECTIONS
|
||||
SORT(CONSTRUCTORS)
|
||||
} >RAM
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
.gcc_except_table : { *(.gcc_except_table) } >RAM
|
||||
.gcc_except_table : { *(.gcc_except_table*) } >RAM
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
|
||||
.data1 : { *(.data1) } >RAM
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2007-09-17 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* PCI_bus/universe.c, console/console.c, include/bsp.h, irq/FPGA.c,
|
||||
|
||||
@@ -131,7 +131,7 @@ SECTIONS
|
||||
CONSTRUCTORS
|
||||
} >RAM
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
.gcc_except_table : { *(.gcc_except_table) } >RAM
|
||||
.gcc_except_table : { *(.gcc_except_table*) } >RAM
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
|
||||
.data1 : { *(.data1) } >RAM
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* bsp_specs: Remove qrtems_debug.
|
||||
|
||||
@@ -163,7 +163,7 @@ SECTIONS
|
||||
PROVIDE (__SDATA_END__ = .);
|
||||
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
*(.gcc_except_table)
|
||||
*(.gcc_except_table*)
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
|
||||
PROVIDE(__GOT_START__ = .);
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2008-03-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add wildcard to gcc_except_table section so
|
||||
programs compiled with gcc 4.3.x can link.
|
||||
|
||||
2008-02-19 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* aclocal.m4: Remove (bogusly checked in).
|
||||
|
||||
@@ -106,7 +106,7 @@ SECTIONS
|
||||
_erodata = .;
|
||||
|
||||
PROVIDE (__EXCEPT_START__ = .);
|
||||
*(.gcc_except_table)
|
||||
*(.gcc_except_table*)
|
||||
PROVIDE (__EXCEPT_END__ = .);
|
||||
__GOT_START__ = .;
|
||||
s.got = .;
|
||||
|
||||
Reference in New Issue
Block a user