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:
parent
6337f45887
commit
e71fcaa59f
1 changed files with 8 additions and 8 deletions
|
|
@ -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 = .;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue