config/debug/gdb.in.cross
changeset 1849 73f76483a389
parent 1844 4d6a56579d9d
child 1851 59e178812e8d
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/debug/gdb.in.cross	Mon Mar 15 21:42:55 2010 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +# Menu for the cross GDB
     1.5 +
     1.6 +config GDB_CROSS
     1.7 +    bool
     1.8 +    prompt "Cross-gdb"
     1.9 +    default y
    1.10 +    select GDB_GDBSERVER if ! BARE_METAL
    1.11 +    help
    1.12 +      Build and install a cross-gdb for the target, to run on host.
    1.13 +
    1.14 +if GDB_CROSS
    1.15 +
    1.16 +config GDB_CROSS_STATIC
    1.17 +    bool
    1.18 +    prompt "Build a static cross gdb"
    1.19 +    default n
    1.20 +    help
    1.21 +      A static cross gdb can be usefull if you debug on a machine that is
    1.22 +      not the one that is used to compile the toolchain.
    1.23 +      
    1.24 +      That way, you can share the cross-gdb without installing a toolchain
    1.25 +      on every machine that will be used to debug target programs.
    1.26 +
    1.27 +config GDB_CROSS_INSIGHT
    1.28 +    bool
    1.29 +    prompt "Use Insight instead (EXPERIMENTAL)"
    1.30 +    default n
    1.31 +    depends on EXPERIMENTAL
    1.32 +    help
    1.33 +      If you say 'Y' here, then Insight will be used to build the cross
    1.34 +      debugger, instead of the plain gdb.
    1.35 +      
    1.36 +      Insight is gdb plus a TCL/TK GUI: http://sourceware.org/insight/
    1.37 +
    1.38 +endif # GDB_CROSS