summaryrefslogtreecommitdiffstats
path: root/rules/cross-gdb.in
blob: 844bcee0e776f7fa4950a3b19b5c5b7e447ca494 (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
menuconfig CROSS_GDB
	bool "cross gdb                   "
	select HOST_EXPAT
	select HOST_GMP
	select HOST_ZLIB
	select HOST_XZ
	help
	GDB is a source-level debugger, capable of breaking programs
	at any specific line, displaying variable values, and
	determining where errors occurred. Currently, it works for C,
	C++, Fortran, Modula 2 and Java programs. A must-have for any
	serious programmer.

if CROSS_GDB

config CROSS_GDB_VERSION
	string
	prompt "gdb version"
	default "6.8"
	help
	  Specify the version of gdb here.

config CROSS_GDB_MD5
	string
	prompt "gdb source md5sum"

config CROSS_GDB_LICENSE
	string
	prompt "gdb license"

config CROSS_GDB_LICENSE_FILES
	string
	prompt "gdb license files"

endif