unset INITRAMFS_SOURCE if appropriate
[buildroot.git] / toolchain / gdb / Config.in.2
blob0346f0b9de0dd0ea1431b45a52d2b6e465880d27
1 # Only used for external-toolchains
2 # Keep this in sync with Config.in
4 comment "Gdb Options"
6 config BR2_PACKAGE_GDB
7         bool "Build gdb debugger for the Target"
8         default n
9         select BR2_PACKAGE_NCURSES
10         help
11             Build the full gdb debugger to run on the target.
13 config BR2_PACKAGE_GDB_SERVER
14         bool "Build gdb server for the Target"
15         default n
16         help
17             Build the gdbserver stub to run on the target.
18             A full gdb is needed to debug the progam.
20 config BR2_PACKAGE_GDB_HOST
21         bool "Build gdb for the Host"
22         default n
23         help
24             Build gdb to run on the host to debug programs run on the target.
26 choice
27         prompt "GDB debugger Version"
28         default BR2_GDB_VERSION_6_3
29         depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST
30         help
31           Select the version of gdb you wish to use.
33         config BR2_EXT_GDB_VERSION_6_2_1
34                 bool "gdb 6.2.1"
36         config BR2_EXT_GDB_VERSION_6_3
37                 bool "gdb 6.3"
39         config BR2_EXT_GDB_VERSION_6_4
40                 bool "gdb 6.4"
42         config BR2_EXT_GDB_VERSION_6_5
43                 bool "gdb 6.5"
45         config BR2_EXT_GDB_VERSION_SNAPSHOT
46                 bool "gdb snapshot"
48 endchoice
50 config BR2_EXT_GDB_VERSION
51         string
52         default "6.2.1"    if BR2_EXT_GDB_VERSION_6_2_1
53         default "6.3"      if BR2_EXT_GDB_VERSION_6_3
54         default "6.4"      if BR2_EXT_GDB_VERSION_6_4
55         default "6.5"      if BR2_EXT_GDB_VERSION_6_5
56         default "6.6"      if BR2_EXT_GDB_VERSION_6_6
57         default "snapshot" if BR2_EXT_GDB_VERSION_SNAPSHOT