2004-11-25 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Add
	new bss sections .bss.* and .gnu.linkonce.b*.
This commit is contained in:
Joel Sherrill
2004-11-26 01:54:22 +00:00
parent bc207bcb76
commit 5f0fdeb495
4 changed files with 11 additions and 5 deletions
+5
View File
@@ -1,3 +1,8 @@
2004-11-25 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Add
new bss sections .bss.* and .gnu.linkonce.b*.
2004-10-28 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add .gnu.linkonce.b.*.
@@ -122,8 +122,8 @@ SECTIONS {
M68Kvec = .;
. += (256 * 4);
_clear_start = .;
*(.bss)
*(.gnu.linkonce.b*)
*(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*)
*(COMMON)
. = ALIGN (16);
PROVIDE (end = .);
@@ -127,7 +127,8 @@ SECTIONS {
M68Kvec = .;
. += (256 * 4);
_clear_start = .;
*(.bss)
*(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*)
*(COMMON)
. = ALIGN (16);
PROVIDE (end = .);
@@ -125,8 +125,8 @@ SECTIONS {
.bss : {
M68Kvec = .;
. += (256 * 4);
_clear_start = .;
*(.bss)
*(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*)
*(COMMON)
. = ALIGN (16);
PROVIDE (end = .);