summaryrefslogtreecommitdiffstats
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
# 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"