2008-02-14 Joel Sherrill <joel.sherrill@OARcorp.com>

* startup/linkcmds.brs5l: Change .bss to .bss*.
This commit is contained in:
Joel Sherrill
2008-02-14 15:36:34 +00:00
parent d89da6eca7
commit 52e97570a8
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2008-02-14 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds.brs5l: Change .bss to .bss*.
2007-09-21 Joel Sherrill <joel.sherrill@OARcorp.com>
* network_5200/network.c: Add multicast support.

View File

@@ -236,7 +236,8 @@ SECTIONS
.bss :
{
bss.start = .;
*(.bss) *(.sbss) *(COMMON)
*(.bss .bss* .gnu.linkonce.b*)
*(.sbss*) *(COMMON)
. = ALIGN(4);
bss.end = .;
} > ram