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:
parent
18826d2c83
commit
03c12855ef
1 changed files with 4 additions and 3 deletions
|
|
@ -27,9 +27,10 @@ SECTIONS
|
|||
|
||||
.bss :
|
||||
{
|
||||
*(.bss)
|
||||
_end = .;
|
||||
_stack = . + 0x1000;
|
||||
_edata = .;
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
_end = .;
|
||||
_stack = . + 0x80000;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue