mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-06 07:33:17 +00:00
2004-11-25 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds_ROM: Add new bss sections .bss.* and .gnu.linkonce.b*.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2004-11-25 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds, startup/linkcmds_ROM: Add new bss sections .bss.*
|
||||||
|
and .gnu.linkonce.b*.
|
||||||
|
|
||||||
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
|
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||||
|
|
||||||
* configure.ac: Require automake > 1.9.
|
* configure.ac: Require automake > 1.9.
|
||||||
|
|||||||
@@ -149,7 +149,8 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.bss : {
|
.bss : {
|
||||||
_clear_start = .;
|
_clear_start = .;
|
||||||
*(.bss)
|
*(.dynbss)
|
||||||
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
PROVIDE (end = .);
|
PROVIDE (end = .);
|
||||||
|
|||||||
@@ -178,7 +178,9 @@ SECTIONS
|
|||||||
bss_start = .;
|
bss_start = .;
|
||||||
_bss_start = .;
|
_bss_start = .;
|
||||||
_clear_start = .;
|
_clear_start = .;
|
||||||
*(.bss)
|
*(.shbss)
|
||||||
|
*(.dynbss)
|
||||||
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (16);
|
. = ALIGN (16);
|
||||||
end = .;
|
end = .;
|
||||||
|
|||||||
Reference in New Issue
Block a user