set output format correctly
decrease stack size a bit, as it made bss overflow the available RAM Thabks to Denes Balatoni git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18717 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e8f7ad1b28
commit
e12005e9c0
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "config.h"
|
||||
|
||||
ENTRY(start)
|
||||
OUTPUT_FORMAT(elf32-littlearm)
|
||||
OUTPUT_FORMAT(elf32-bigarm)
|
||||
OUTPUT_ARCH(arm)
|
||||
STARTUP(target/arm/s5l8700/crt0.o)
|
||||
|
||||
|
@ -47,7 +47,7 @@ SECTIONS
|
|||
*(.stack)
|
||||
_stackbegin = .;
|
||||
stackbegin = .;
|
||||
. += 0x2000;
|
||||
. += 0x1000;
|
||||
_stackend = .;
|
||||
stackend = .;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue