1
0
Fork 0
forked from len0rd/rockbox

Made it malloc friendly, and fixed the bss section

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@530 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-05-09 23:02:11 +00:00
parent 18826d2c83
commit 03c12855ef

View file

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