4 bool "Build gdb debugger for the Target"
6 select BR2_PACKAGE_NCURSES
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"
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"
21 Build gdb to run on the host to debug programs run on the target.
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
29 Select the version of gdb you wish to use.
31 config BR2_GDB_VERSION_6_2_1
35 config BR2_GDB_VERSION_6_3
39 config BR2_GDB_VERSION_6_4
42 config BR2_GDB_VERSION_6_5
46 config BR2_GDB_VERSION_6_6
50 config BR2_GDB_VERSION_6_7_1
54 config BR2_GDB_VERSION_6_8
58 config BR2_GDB_VERSION_SNAPSHOT
64 config BR2_GDB_VERSION
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