# source "rules/gdbserver.in" menuconfig GDB bool prompt "gdb (the real one) " select GLIBC_LIBM if (GLIBC && GLIBC_INSTALL && GDB_SHARED) select TERMCAP if GDB_TERMCAP select NCURSES if GDB_NCURSES # FIXME: this does not work, the script creates dependencies for # both libraries! (rsc) config GDB_SHARED bool "Build shared" default y depends on GDB help If not set, the build option LDFLAGS=-static will be activated. choice prompt "Select term library" default GDB_TERMCAP depends on GDB 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