summaryrefslogtreecommitdiffstats
path: root/rules/gdb.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-05-20 14:32:45 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-05-20 14:32:45 +0000
commitb684b01d9933d35fcd7ffcd2639e3e571a547891 (patch)
treec6f20760d007c346f87434bd6a486c3bb7a00d80 /rules/gdb.in
parentddc5b17e5e14228f5efca6bad47170b1074bd616 (diff)
downloadptxdist-b684b01d9933d35fcd7ffcd2639e3e571a547891.tar.gz
ptxdist-b684b01d9933d35fcd7ffcd2639e3e571a547891.tar.xz
* patches/gdb-6.7:
removed * patches/gdb-6.8, patches/gdb-6.8/generic/m68k-linux-nat-get_regcache_arch.patch: added, coldfire patch by: Carsten Schlote * rules/gdb.make, rules/gdbserver.make, rules/gdb.in, rules/gdbserver.in: cleanups, version bump to 6.8 (but now configureable) git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8188 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gdb.in')
-rw-r--r--rules/gdb.in22
1 files changed, 15 insertions, 7 deletions
diff --git a/rules/gdb.in b/rules/gdb.in
index 7663cef8b..44e4a493b 100644
--- a/rules/gdb.in
+++ b/rules/gdb.in
@@ -1,14 +1,18 @@
#
-source "rules/gdbserver.in"
+menu "gdb "
+
+config GDB__VERSION
+ string "gdb version"
+ default 6.8
menuconfig GDB
bool
prompt "gdb (the real one) "
- select TERMCAP if GDB_TERMCAP
- select NCURSES if GDB_NCURSES
+ select TERMCAP if GDB__TERMCAP
+ select NCURSES if GDB__NCURSES
-config GDB_SHARED
+config GDB__SHARED
bool "Build shared"
default y
depends on GDB
@@ -20,10 +24,10 @@ config GDB_SHARED
choice
prompt "Select term library"
- default GDB_TERMCAP
+ default GDB__TERMCAP
depends on GDB
- config GDB_TERMCAP
+ config GDB__TERMCAP
bool "termcap"
help
Use termcap as terminal library.
@@ -33,7 +37,7 @@ choice
to terminals in a way independent of the
terminal type.
- config GDB_NCURSES
+ config GDB__NCURSES
bool "ncurses"
help
Use ncurses as terminal library.
@@ -44,3 +48,7 @@ choice
highlights and forms charcters and function-key
mapping.
endchoice
+
+source "rules/gdbserver.in"
+
+endmenu