config/debug/gdb.in
changeset 96 aa1a9fbd6eb8
child 105 5a8d4f6a19c7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/debug/gdb.in	Thu May 17 16:22:51 2007 +0000
     1.3 @@ -0,0 +1,75 @@
     1.4 +# GDB menu
     1.5 +
     1.6 +menuconfig GDB
     1.7 +    bool
     1.8 +    prompt "gdb"
     1.9 +    default n
    1.10 +    depends on EXPERIMENTAL
    1.11 +    help
    1.12 +      Enable gdb for the target
    1.13 +
    1.14 +if GDB
    1.15 +
    1.16 +config GDB_CROSS
    1.17 +    bool
    1.18 +    prompt "Cross-gdb"
    1.19 +    default y
    1.20 +    help
    1.21 +      Build and install a cross-gdb for the target, and to run on host.
    1.22 +
    1.23 +config GDB_NATIVE
    1.24 +    bool
    1.25 +    prompt "Native gdb"
    1.26 +    default n
    1.27 +    help
    1.28 +      Build and install a native gdb for the target, to run on the target.
    1.29 +
    1.30 +choice
    1.31 +    bool
    1.32 +    prompt "gdb version"
    1.33 +
    1.34 +config GDB_V_snapshot
    1.35 +    bool
    1.36 +    prompt "snapshot"
    1.37 +    depends on EXPERIMENTAL
    1.38 +
    1.39 +config GDB_V_6_2_1
    1.40 +    bool
    1.41 +    prompt "6.2.1"
    1.42 +    depends on OBSOLETE
    1.43 +
    1.44 +config GDB_V_6_3
    1.45 +    bool
    1.46 +    prompt "6.3"
    1.47 +    depends on OBSOLETE
    1.48 +
    1.49 +config GDB_V_6_4
    1.50 +    bool
    1.51 +    prompt "6.4"
    1.52 +    depends on OBSOLETE
    1.53 +
    1.54 +config GDB_V_6_5
    1.55 +    bool
    1.56 +    prompt "6.5"
    1.57 +
    1.58 +config GDB_V_6_6
    1.59 +    bool
    1.60 +    prompt "6.6"
    1.61 +
    1.62 +# CT_INSERT_VERSION_ABOVE
    1.63 +# Don't remove above line!
    1.64 +endchoice
    1.65 +
    1.66 +config GDB_VERSION
    1.67 +    string
    1.68 +    default "snapshot" if GDB_V_snapshot
    1.69 +    default "6.2.1" if GDB_V_6_2_1
    1.70 +    default "6.3" if GDB_V_6_3
    1.71 +    default "6.4" if GDB_V_6_4
    1.72 +    default "6.5" if GDB_V_6_5
    1.73 +    default "6.6" if GDB_V_6_6
    1.74 +# CT_INSERT_VERSION_STRING_ABOVE
    1.75 +# Don't remove above line!
    1.76 +
    1.77 +endif
    1.78 +