1
0
Fork 0
forked from len0rd/rockbox

Moved the .bss section to after the .stack section

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1505 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-08-01 09:07:19 +00:00
parent 6337f45887
commit e71fcaa59f

View file

@ -33,14 +33,6 @@ SECTIONS
*(.rodata)
} > DRAM
.bss :
{
_edata = .;
*(.bss)
*(COMMON)
_end = .;
} > DRAM
.stack :
{
*(.stack)
@ -51,6 +43,14 @@ SECTIONS
_stackend = .;
} > DRAM
.bss :
{
_edata = .;
*(.bss)
*(COMMON)
_end = .;
} > DRAM
.heap :
{
_poolstart = .;