config/debug/gdb.in.native
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Aug 23 10:38:15 2010 +0200 (2010-08-23)
changeset 2098 9a8f0e3fe605
parent 1850 136a929ec37f
child 2484 d1a8c2ae7946
permissions -rw-r--r--
debug/gdb: companion libs are not used

Although the gdb ./configure advertises for GMP and MPFR, those libraries
are not used by gdb (the ./configure is used across different packages,
hence the check for GMP/MPFR). See:
http://sourceware.org/ml/crossgcc/2010-08/msg00168.html

The same applies to MPC.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # Menu for the native GDB
     2 
     3 config GDB_NATIVE
     4     bool
     5     prompt "Native gdb"
     6     default n
     7     depends on ! BARE_METAL
     8     depends on ! BACKEND
     9     help
    10       Build and install a native gdb for the target, to run on the target.
    11 
    12 if GDB_NATIVE
    13 
    14 config GDB_NATIVE_NO_STATIC
    15     bool
    16     default n
    17 
    18 config GDB_NATIVE_STATIC
    19     bool
    20     prompt "Build a static native gdb"
    21     depends on ! GDB_NATIVE_NO_STATIC
    22     default n
    23     help
    24       In case you have trouble with dynamic loading of shared libraries,
    25       you will find that a static gdb comes in handy.
    26 
    27 endif # GDB_NATIVE