config/debug/gdb.in.cross
author Arnaud Lacombe <lacombar@gmail.com>
Tue Aug 03 06:17:51 2010 +0200 (2010-08-03)
changeset 2064 f5ebe8c429dc
parent 1915 78557644e31d
child 2098 9a8f0e3fe605
permissions -rw-r--r--
libc/uClibc: add uClibc 0.9.30.3

This version has been released a couple of month ago, but it never reached
crosstool-ng tree. This may be linked to the fact that the current 0.9.30.2,
once patched, has nothing much different from 0.9.30.3, released.

I'm not including any patch with this upgrade, on purpose.

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
yann@1849
     1
# Menu for the cross GDB
yann@96
     2
yann@96
     3
config GDB_CROSS
yann@96
     4
    bool
yann@96
     5
    prompt "Cross-gdb"
yann@96
     6
    default y
yann@850
     7
    select GDB_GDBSERVER if ! BARE_METAL
yann@96
     8
    help
yann@583
     9
      Build and install a cross-gdb for the target, to run on host.
yann@96
    10
yann@1849
    11
if GDB_CROSS
yann@1849
    12
yann@1915
    13
config GDB_CROSS_STATIC
yann@1915
    14
    bool
yann@1915
    15
    prompt "Build a static cross gdb"
yann@1915
    16
    default n
yann@1915
    17
    help
yann@1915
    18
      A static cross gdb can be usefull if you debug on a machine that is
yann@1915
    19
      not the one that is used to compile the toolchain.
yann@1915
    20
      
yann@1915
    21
      That way, you can share the cross-gdb without installing a toolchain
yann@1915
    22
      on every machine that will be used to debug target programs.
yann@1915
    23
yann@1851
    24
config GDB_CROSS_USE_GMP_MPFR
yann@1851
    25
    bool
yann@1851
    26
    prompt "Use GMP/MPFR"
yann@1851
    27
    default n
yann@1851
    28
    select GMP
yann@1851
    29
    select MPFR
yann@1851
    30
    help
yann@1851
    31
      gdb can use GMP+MPFR, although it does not seem compulsory.
yann@1851
    32
      
yann@1851
    33
      Say 'Y' here if you want to use GMP+MPFR.
yann@1851
    34
yann@1853
    35
config GDB_CROSS_USE_MPC
yann@1853
    36
    bool
yann@1853
    37
    prompt "Use MPC"
yann@1853
    38
    default n
yann@1853
    39
    select GDB_CROSS_USE_GMP_MPFR
yann@1853
    40
    select MPC
yann@1853
    41
    help
yann@1853
    42
      gdb can use MPC, although it does not seem compulsory.
yann@1853
    43
      
yann@1853
    44
      Say 'Y' here if you want to use MPC.
yann@1853
    45
yann@1849
    46
endif # GDB_CROSS