summaryrefslogtreecommitdiff
path: root/config/debug/gdb.in.cross
blob: 1c55100bba050d0bc6f8d2c348ef7cc2ae7a3859 (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
# Menu for the cross GDB

config STATIC_TOOLCHAIN
    select GDB_CROSS_STATIC if GDB_CROSS

comment "Cross-gdb - disabled (requires expat; re-run ./configure to enable)"
    depends on !CONFIGURE_has_expat

comment "Static cross-gdb - disabled (requires static expat; re-run ./configure to enable)"
    depends on STATIC_TOOLCHAIN && !CONFIGURE_has_static_expat

config GDB_CROSS
    bool
    prompt "Cross-gdb"
    default y
    depends on CONFIGURE_has_expat
    depends on !STATIC_TOOLCHAIN || CONFIGURE_has_static_expat
    select GDB_GDBSERVER if ! BARE_METAL
    help
      Build and install a cross-gdb for the target, to run on host.

if GDB_CROSS

config GDB_CROSS_STATIC
    bool
    prompt "Build a static cross gdb"
    depends on CONFIGURE_has_static_expat
    help
      A static cross gdb can be usefull if you debug on a machine that is
      not the one that is used to compile the toolchain.
      
      That way, you can share the cross-gdb without installing a toolchain
      on every machine that will be used to debug target programs.

endif # GDB_CROSS