diff options
| author | Tomasz Malesinski <tomal@rockbox.org> | 2006-01-25 01:41:22 +0000 |
|---|---|---|
| committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-01-25 01:41:22 +0000 |
| commit | d9c0ad1db69dd3a32939725006fbe4ee27dedcff (patch) | |
| tree | 65efab62bd7bfa33635baf44a061249285a8502d /tools | |
| parent | 4bf024f872a0fce71b8861ef83a151fd758f3a6c (diff) | |
| download | rockbox-d9c0ad1db69dd3a32939725006fbe4ee27dedcff.zip rockbox-d9c0ad1db69dd3a32939725006fbe4ee27dedcff.tar.gz rockbox-d9c0ad1db69dd3a32939725006fbe4ee27dedcff.tar.bz2 rockbox-d9c0ad1db69dd3a32939725006fbe4ee27dedcff.tar.xz | |
New build type: GDB stub
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8446 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 990bd84..f8fef62 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" |