forked from Imagelibrary/rtems
2006-02-07 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add sections to fix C++ linking errors.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2006-02-07 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add sections to fix C++ linking errors.
|
||||||
|
|
||||||
2006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>
|
2006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* configure.ac: Remove explicit ampolish3 support (now in
|
* configure.ac: Remove explicit ampolish3 support (now in
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ SECTIONS
|
|||||||
text.start = . ;
|
text.start = . ;
|
||||||
*(.entry)
|
*(.entry)
|
||||||
*(.entry2)
|
*(.entry2)
|
||||||
*(.text)
|
*(.text*)
|
||||||
*(.rodata*)
|
*(.rodata*)
|
||||||
*(.rodata1)
|
*(.rodata1)
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ SECTIONS
|
|||||||
*(.data1)
|
*(.data1)
|
||||||
*(.data.* .gnu.linkonce.d*)
|
*(.data.* .gnu.linkonce.d*)
|
||||||
PROVIDE (__SDATA_START__ = .);
|
PROVIDE (__SDATA_START__ = .);
|
||||||
*(.sdata)
|
*(.sdata*)
|
||||||
*(.gnu.linkonce.s.*)
|
*(.gnu.linkonce.s.*)
|
||||||
} > RAM
|
} > RAM
|
||||||
|
|
||||||
@@ -132,7 +132,7 @@ SECTIONS
|
|||||||
.bss :
|
.bss :
|
||||||
{
|
{
|
||||||
bss.start = .;
|
bss.start = .;
|
||||||
*(.bss) *(.sbss) *(COMMON)
|
*(.bss*) *(.sbss*) *(COMMON)
|
||||||
bss.end = ALIGN(4);
|
bss.end = ALIGN(4);
|
||||||
} > RAM
|
} > RAM
|
||||||
__SBSS_END__ = .;
|
__SBSS_END__ = .;
|
||||||
|
|||||||
Reference in New Issue
Block a user