2009-10-16 Ralf Corsépius <ralf.corsepius@rtems.org>

* startup/linkcmds: Add __sbss_start, __sbss_end etc.
This commit is contained in:
Ralf Corsepius
2009-10-16 10:45:44 +00:00
parent 1560d12d01
commit c20f690bfa
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-10-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* startup/linkcmds: Add __sbss_start, __sbss_end etc.
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org> 2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* make/custom/virtex.cfg: New (relocated from /make/custom). * make/custom/virtex.cfg: New (relocated from /make/custom).

View File

@@ -214,9 +214,11 @@ SECTIONS
} > RAM } > RAM
_edata = .; _edata = .;
.sbss : { .sbss : {
PROVIDE (__sbss_start = .); PROVIDE (___sbss_start = .);
*(.dynsbss) *(.dynsbss)
*(.sbss .sbss.* .gnu.linkonce.sb.*) *(.sbss .sbss.* .gnu.linkonce.sb.*)
*(.scommon) *(.scommon)
PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .);
} > RAM } > RAM
.bss : { .bss : {
*(.dynbss) *(.dynbss)