config/debug/gdb.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Apr 26 21:31:05 2008 +0000 (2008-04-26)
changeset 454 372b2f397baa
parent 220 9186a4ff574b
child 457 578fdd250fcc
permissions -rw-r--r--
Configure tsocks with a simple heuristic.

Consider the proxy has to be in a 'local' network. It means it is directly
reachable by the local machine, even if the local machine has to hop through
one or more gates to reach the proxy (often the case in enterprise networks
where class A 10.0.0.0/8 is in fact sub-divided into smaller networks, each
one of them in a different location, eg. 10.1.0.0/16 in a place, while
10.2.0.0/16 would be on the other side of the world). Not being in the same
subnet does not mean the proxy is not available.

So we will build a mask with at most high bits set, which defines a network
that has both the local machine and the proxy. Because a machine may have
more than one interface, build a mask for each of them, removing 127.0.0.1
which is added automagically by tsocks, and removing duplicate masks.

If all of this does not work, then it means the local machine can NOT in fact
reach the proxy, which in turn means the user mis-configured something (most
probably a typo...).

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