summaryrefslogtreecommitdiffstats
path: root/rules/gdb.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2004-11-30 13:45:49 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2004-11-30 13:45:49 +0000
commit4ea05dcee663b0e351812206933a551e2639296d (patch)
tree30c5e3f649c7ff093cb3fa69bbad6c37e7fb22bd /rules/gdb.in
parent68f2b9ed1b6dbd03def28c0b4e8779f6f264c340 (diff)
downloadptxdist-4ea05dcee663b0e351812206933a551e2639296d.tar.gz
ptxdist-4ea05dcee663b0e351812206933a551e2639296d.tar.xz
* upgraded gdb 6.0 -> 6.3
* added a bit of select magic :) git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@2069 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gdb.in')
-rw-r--r--rules/gdb.in15
1 files changed, 4 insertions, 11 deletions
diff --git a/rules/gdb.in b/rules/gdb.in
index f7bcb8282..2ad9b579f 100644
--- a/rules/gdb.in
+++ b/rules/gdb.in
@@ -3,30 +3,21 @@ config XGDB
config GDBSERVER
bool "Build gdbserver for target"
- depends on !ARCH_SPARC
-
-comment "building gdbserver static, install libthreads_db on target (see C Library) to enable shared"
- depends on GDBSERVER
- depends on !GDBSERVER_SHARED && !(GLIBC_THREAD_DB || UCLIBC_PTHREAD)
config GDBSERVER_SHARED
bool "Build shared"
default y
depends on GDBSERVER
- depends on GLIBC_THREAD_DB || UCLIBC_PTHREAD
+ select GLIBC_THREAD_DB
config GDB
bool "Build GDB for target"
-comment "building GDB static, install libm on target (see C Library) to enables shared"
- depends on GDB
- depends on !GDB_SHARED && ! (GLIBC_LIBM || UCLIBC_M)
-
config GDB_SHARED
bool "Build shared"
default y
depends on GDB
- depends on GLIBC_LIBM || UCLIBC_M
+ select GLIBC_LIBM
choice
prompt "Select term library"
@@ -35,9 +26,11 @@ choice
config GDB_TERMCAP
bool "termcap"
+ select TERMCAP
config GDB_NCURSES
bool "ncurses"
+ select NCURSES
endchoice
config GDB_WRAPPERS