Compile for Iriver iFP with short calls.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10554 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4e36352567
commit
17972c9267
1 changed files with 5 additions and 2 deletions
7
tools/configure
vendored
7
tools/configure
vendored
|
@ -210,7 +210,10 @@ coldfirecc () {
|
|||
|
||||
arm7tdmicc () {
|
||||
prefixtools arm-elf-
|
||||
GCCOPTS="$CCOPTS -mcpu=arm7tdmi -ffunction-sections -mlong-calls"
|
||||
GCCOPTS="$CCOPTS -mcpu=arm7tdmi"
|
||||
if test "X$1" != "Xshort"; then
|
||||
GCCOPTS="$GCCOPTS -ffunction-sections -mlong-calls"
|
||||
fi
|
||||
GCCOPTIMIZE="-fomit-frame-pointer"
|
||||
endian="little"
|
||||
}
|
||||
|
@ -841,7 +844,7 @@ toolsdir='\$(ROOTDIR)/tools'
|
|||
archos="ifp7xx"
|
||||
target="-DIRIVER_IFP7XX"
|
||||
memory=1
|
||||
arm7tdmicc
|
||||
arm7tdmicc short
|
||||
tool="cp"
|
||||
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
|
||||
bmp2rb_native="$rootdir/tools/bmp2rb -f 0"
|
||||
|
|
Loading…
Reference in a new issue