summaryrefslogtreecommitdiffstats
path: root/rules/gdbserver.in
blob: 43d059d3e3465b7907030a78e148f9837124e97d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## SECTION=debug_tools_gdb

menuconfig GDBSERVER
	tristate
	prompt "gdbserver                     "
	select LIBC_THREAD_DB if GDBSERVER_SHARED
	help
	  GDBSERVER is a program that allows you to run GDB on a
	  different machine than the one which is running the
	  program being debugged.

if GDBSERVER

config GDBSERVER_SHARED
	bool "shared gdbserver"
	default y
	help
	  If not set, the build option LDFLAGS=-static
	  will be activated.

endif