summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-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"