1
0
Fork 0
forked from len0rd/rockbox

More newlib malloc friendly. Proper bss section allocation

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@525 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-05-09 21:08:17 +00:00
parent 2e2f938a3a
commit 063a85c66f

View file

@ -27,9 +27,10 @@ SECTIONS
.bss :
{
*(.bss)
_end = .;
_stack = . + 0x1000;
_edata = .;
*(.bss)
*(COMMON)
_end = .;
_stack = . + 0x80000;
}
}