summaryrefslogtreecommitdiff
path: root/config/debug/gdb.in
blob: 9f5e8e3021201db6c672be28155d0e987d1d7bff (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# GDB menu

menuconfig GDB
    bool
    prompt "gdb"
    default n
    help
      Enable gdb for the target

if GDB

config GDB_CROSS
    bool
    prompt "Cross-gdb"
    default y
    help
      Build and install a cross-gdb for the target, and to run on host.

config GDB_NATIVE
    bool
    prompt "Native gdb"
    default n
    depends on EXPERIMENTAL
    help
      Build and install a native gdb for the target, to run on the target.

choice
    bool
    prompt "gdb version"

config GDB_V_snapshot
    bool
    prompt "snapshot"
    depends on EXPERIMENTAL

config GDB_V_6_2_1
    bool
    prompt "6.2.1"
    depends on OBSOLETE

config GDB_V_6_3
    bool
    prompt "6.3"
    depends on OBSOLETE

config GDB_V_6_4
    bool
    prompt "6.4"
    depends on OBSOLETE

config GDB_V_6_5
    bool
    prompt "6.5"

config GDB_V_6_6
    bool
    prompt "6.6"

# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
endchoice

config GDB_VERSION
    string
    default "snapshot" if GDB_V_snapshot
    default "6.2.1" if GDB_V_6_2_1
    default "6.3" if GDB_V_6_3
    default "6.4" if GDB_V_6_4
    default "6.5" if GDB_V_6_5
    default "6.6" if GDB_V_6_6
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!

endif