summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-01-25 01:41:22 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-01-25 01:41:22 +0000
commitd9c0ad1db69dd3a32939725006fbe4ee27dedcff (patch)
tree65efab62bd7bfa33635baf44a061249285a8502d
parent4bf024f872a0fce71b8861ef83a151fd758f3a6c (diff)
downloadrockbox-d9c0ad1db69dd3a32939725006fbe4ee27dedcff.tar.gz
rockbox-d9c0ad1db69dd3a32939725006fbe4ee27dedcff.zip
New build type: GDB stub
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8446 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure15
1 files changed, 14 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 990bd8471f..f8fef62fdb 100755
--- a/tools/configure
+++ b/tools/configure
@@ -807,7 +807,7 @@ fi
807# Figure out build "type" 807# Figure out build "type"
808# 808#
809 echo "" 809 echo ""
810 echo "Build (N)ormal, (D)evel, (S)imulator, (B)ootloader? (N)" 810 echo "Build (N)ormal, (D)evel, (S)imulator, (B)ootloader, (G)DB stub? (N)"
811 811
812 option=`input`; 812 option=`input`;
813 813
@@ -839,6 +839,19 @@ fi
839 echo "Devel build selected" 839 echo "Devel build selected"
840 whichdevel 840 whichdevel
841 ;; 841 ;;
842 [Gg])
843 extradefines="-DSTUB" # for target makefile symbol EXTRA_DEFINES
844 appsdir='\$(ROOTDIR)/gdb'
845 apps="stub"
846 case $archos in
847 ifp7xx)
848 output="stub.wma"
849 ;;
850 *)
851 ;;
852 esac
853 echo "GDB stub build selected"
854 ;;
842 *) 855 *)
843 debug="" 856 debug=""
844 echo "Normal build selected" 857 echo "Normal build selected"