New build type: GDB stub
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8446 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4bf024f872
commit
d9c0ad1db6
1 changed files with 14 additions and 1 deletions
15
tools/configure
vendored
15
tools/configure
vendored
|
@ -807,7 +807,7 @@ fi
|
||||||
# Figure out build "type"
|
# Figure out build "type"
|
||||||
#
|
#
|
||||||
echo ""
|
echo ""
|
||||||
echo "Build (N)ormal, (D)evel, (S)imulator, (B)ootloader? (N)"
|
echo "Build (N)ormal, (D)evel, (S)imulator, (B)ootloader, (G)DB stub? (N)"
|
||||||
|
|
||||||
option=`input`;
|
option=`input`;
|
||||||
|
|
||||||
|
@ -839,6 +839,19 @@ fi
|
||||||
echo "Devel build selected"
|
echo "Devel build selected"
|
||||||
whichdevel
|
whichdevel
|
||||||
;;
|
;;
|
||||||
|
[Gg])
|
||||||
|
extradefines="-DSTUB" # for target makefile symbol EXTRA_DEFINES
|
||||||
|
appsdir='\$(ROOTDIR)/gdb'
|
||||||
|
apps="stub"
|
||||||
|
case $archos in
|
||||||
|
ifp7xx)
|
||||||
|
output="stub.wma"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
echo "GDB stub build selected"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
debug=""
|
debug=""
|
||||||
echo "Normal build selected"
|
echo "Normal build selected"
|
||||||
|
|
Loading…
Reference in a new issue