bump version
[buildroot.git] / toolchain / gdb / Config.in
blob1eee6440105fa8c0150754047882cec7f8662087
1 comment "Gdb Options"
3 config BR2_PACKAGE_GDB
4         bool "Build gdb debugger for the Target"
5         default n
6         select BR2_PACKAGE_NCURSES
7         help
8             Build the full gdb debugger to run on the target.
10 config BR2_PACKAGE_GDB_SERVER
11         bool "Build gdb server for the Target"
12         default n
13         help
14             Build the gdbserver stub to run on the target.
15             A full gdb is needed to debug the progam.
17 config BR2_PACKAGE_GDB_HOST
18         bool "Build gdb for the Host"
19         default n
20         help
21             Build gdb to run on the host to debug programs run on the target.
23 choice
24         prompt "GDB debugger Version"
25         default BR2_GDB_VERSION_6_8 if !BR2_avr32
26         default BR2_GDB_VERSION_6_4 if BR2_avr32
27         depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST
28         help
29           Select the version of gdb you wish to use.
31         config BR2_GDB_VERSION_6_2_1
32                 bool "gdb 6.2.1"
33                 depends on !BR2_avr32
35         config BR2_GDB_VERSION_6_3
36                 bool "gdb 6.3"
37                 depends on !BR2_avr32
39         config BR2_GDB_VERSION_6_4
40                 bool "gdb 6.4"
42         config BR2_GDB_VERSION_6_5
43                 bool "gdb 6.5"
44                 depends on !BR2_avr32
46         config BR2_GDB_VERSION_6_6
47                 bool "gdb 6.6"
48                 depends on !BR2_avr32
50         config BR2_GDB_VERSION_6_7_1
51                 bool "gdb 6.7.1"
52                 depends on !BR2_avr32
54         config BR2_GDB_VERSION_6_8
55                 bool "gdb 6.8"
56                 depends on !BR2_avr32
58         config BR2_GDB_VERSION_SNAPSHOT
59                 bool "gdb snapshot"
60                 depends on !BR2_avr32
62 endchoice
64 config BR2_GDB_VERSION
65         string
66         default "6.2.1"    if BR2_GDB_VERSION_6_2_1
67         default "6.3"      if BR2_GDB_VERSION_6_3
68         default "6.4"      if BR2_GDB_VERSION_6_4
69         default "6.5"      if BR2_GDB_VERSION_6_5
70         default "6.6"      if BR2_GDB_VERSION_6_6
71         default "6.7.1"    if BR2_GDB_VERSION_6_7_1
72         default "6.8"      if BR2_GDB_VERSION_6_8
73         default "snapshot" if BR2_GDB_VERSION_SNAPSHOT