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:
Tomasz Malesinski 2006-01-25 01:41:22 +00:00
parent 4bf024f872
commit d9c0ad1db6

15
tools/configure vendored
View file

@ -807,7 +807,7 @@ fi
# Figure out build "type"
#
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`;
@ -839,6 +839,19 @@ fi
echo "Devel build selected"
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=""
echo "Normal build selected"