config/debug/gdb.in.cross
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 15 21:42:55 2010 +0100 (2010-03-15)
changeset 1849 73f76483a389
parent 1844 config/debug/gdb.in@4d6a56579d9d
child 1851 59e178812e8d
permissions -rw-r--r--
debug/gdb: split menuconfig for easier maintenance
     1 # Menu for the cross GDB
     2 
     3 config GDB_CROSS
     4     bool
     5     prompt "Cross-gdb"
     6     default y
     7     select GDB_GDBSERVER if ! BARE_METAL
     8     help
     9       Build and install a cross-gdb for the target, to run on host.
    10 
    11 if GDB_CROSS
    12 
    13 config GDB_CROSS_STATIC
    14     bool
    15     prompt "Build a static cross gdb"
    16     default n
    17     help
    18       A static cross gdb can be usefull if you debug on a machine that is
    19       not the one that is used to compile the toolchain.
    20       
    21       That way, you can share the cross-gdb without installing a toolchain
    22       on every machine that will be used to debug target programs.
    23 
    24 config GDB_CROSS_INSIGHT
    25     bool
    26     prompt "Use Insight instead (EXPERIMENTAL)"
    27     default n
    28     depends on EXPERIMENTAL
    29     help
    30       If you say 'Y' here, then Insight will be used to build the cross
    31       debugger, instead of the plain gdb.
    32       
    33       Insight is gdb plus a TCL/TK GUI: http://sourceware.org/insight/
    34 
    35 endif # GDB_CROSS