summaryrefslogtreecommitdiffstats
path: root/rules/gdb.in
blob: 1b25ac5d18a457b445d357bf384c95e283d35e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#


source "rules/gdbserver.in"

config GDB
	bool "gdb (the real one)"

config GDB_SHARED
	bool "Build shared"
	default y
	depends on GDB
        select GLIBC_LIBM if GLIBC && GLIBC_INSTALL
	help
	  FIXME: This item needs to be documented

choice
	prompt "Select term library"
	default GDB_TERMCAP
	depends on GDB

	config GDB_TERMCAP
		bool "termcap"
                select TERMCAP
		help
	  	  FIXME: This item needs to be documented

	config GDB_NCURSES
		bool "ncurses"
                select NCURSES
		help
	  	  FIXME: This item needs to be documented
endchoice        

config GDB_THREAD_DEBUG
        bool "enable Thread Debugging (i.e.: don't strip C-library)"
        depends on GDB || GDBSERVER
        default y
        select GLIBC_DEBUG if GLIBC
	help
	  FIXME: This item needs to be documented