config/debug/gdb.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Apr 18 22:16:28 2008 +0000 (2008-04-18)
changeset 451 8a72f9bcf675
parent 220 9186a4ff574b
child 457 578fdd250fcc
permissions -rw-r--r--
Using SOCKS 4/5 proxy is no easy task:
- a machine may well be able to reach the proxy, even if it is not on the same sub-net(s) as the machine itself (absolutely legitimate)
- tsocks.conf needs a list of so-called 'local' networks that can be reached without the need for a SOCKS connection
- SOCKS proxies are expected to be in 'local' networks
- there is absolutely NO way to tell what networks are local, besides the sub-net(s) the machine is in

Therefore, appropriate configuration of SOCKS 4/5 configuration is really complex, and attempts to correctly overcome this issue are doomed.

/trunk/scripts/crosstool.sh | 52 46 6 0 ++++++++++++++++++++++++++++++++++----
/trunk/config/global/download_extract.in | 39 31 8 0 +++++++++++++++++++++++------
2 files changed, 77 insertions(+), 14 deletions(-)
     1 # GDB menu
     2 
     3 menuconfig GDB
     4     bool
     5     prompt "gdb"
     6     default n
     7     help
     8       Enable gdb for the target
     9 
    10 if GDB
    11 
    12 config GDB_CROSS
    13     bool
    14     prompt "Cross-gdb"
    15     default y
    16     help
    17       Build and install a cross-gdb for the target, and to run on host.
    18 
    19 config GDB_CROSS_STATIC_GDBSERVER
    20     bool
    21     prompt "Build a static gdbserver"
    22     default n
    23     depends on GDB_CROSS
    24     help
    25       In case you have trouble with dynamic loading of shared libraries,
    26       you will find that a static gdbserver comes in handy.
    27 
    28 config GDB_NATIVE
    29     bool
    30     prompt "Native gdb (EXPERIMENTAL)"
    31     default n
    32     depends on EXPERIMENTAL
    33     help
    34       Build and install a native gdb for the target, to run on the target.
    35 
    36 choice
    37     bool
    38     prompt "gdb version"
    39 
    40 config GDB_V_snapshot
    41     bool
    42     prompt "snapshot (EXPERIMENTAL)"
    43     depends on EXPERIMENTAL
    44 
    45 config GDB_V_6_4
    46     bool
    47     prompt "6.4 (OBSOLETE)"
    48     depends on OBSOLETE
    49 
    50 config GDB_V_6_5
    51     bool
    52     prompt "6.5"
    53 
    54 config GDB_V_6_6
    55     bool
    56     prompt "6.6"
    57 
    58 # CT_INSERT_VERSION_ABOVE
    59 # Don't remove above line!
    60 endchoice
    61 
    62 config GDB_VERSION
    63     string
    64     default "snapshot" if GDB_V_snapshot
    65     default "6.4" if GDB_V_6_4
    66     default "6.5" if GDB_V_6_5
    67     default "6.6" if GDB_V_6_6
    68 # CT_INSERT_VERSION_STRING_ABOVE
    69 # Don't remove above line!
    70 
    71 endif
    72