summaryrefslogtreecommitdiffstats
path: root/rules/gdb.in
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-01-18 14:49:33 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-01-18 14:49:33 +0100
commit0cb9253db20d683123bf2a426e7b1dcaf5cd4ef4 (patch)
tree294a6b20b2486da305a4599671323b8d0d596d49 /rules/gdb.in
parent1d07bc2555fff3f8da4d4148ad87da66fc90cc79 (diff)
downloadptxdist-0cb9253db20d683123bf2a426e7b1dcaf5cd4ef4.tar.gz
ptxdist-0cb9253db20d683123bf2a426e7b1dcaf5cd4ef4.tar.xz
[gdb] add missing dependencies
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/gdb.in')
-rw-r--r--rules/gdb.in32
1 files changed, 4 insertions, 28 deletions
diff --git a/rules/gdb.in b/rules/gdb.in
index 15a3954f1..65c6fff01 100644
--- a/rules/gdb.in
+++ b/rules/gdb.in
@@ -3,8 +3,10 @@
menuconfig GDB
tristate
prompt "gdb (the real one) "
- select TERMCAP if GDB_TERMCAP
- select NCURSES if GDB_NCURSES
+ select LIBC_M
+ select LIBC_DL
+ select GCCLIBS_GCC_S
+ select NCURSES
help
The GNU Debugger
@@ -24,31 +26,5 @@ config GDB_SHARED
If not set, the build option
LDFLAGS=-static will be activated.
-choice
- prompt "select term library"
- default GDB_TERMCAP
-
- config GDB_TERMCAP
- bool "termcap"
- help
- Use termcap as terminal library.
-
- Termcap is a library of C functions that
- enable programs to send control strings
- to terminals in a way independent of the
- terminal type.
-
- config GDB_NCURSES
- bool "ncurses"
- help
- Use ncurses as terminal library.
-
- The ncurses (new curses) library is a free
- software emulation of curses. It uses terminfo
- format, supports pads and color and multiple
- highlights and forms charcters and function-key
- mapping.
-endchoice
-
endif