debug/gdb: add option to use GMP and MPFR

GMP and MPFR are optional for gdb, so offer a config option.
This commit is contained in:
Yann E. MORIN" 2010-03-15 21:51:20 +01:00
parent c270bf2a02
commit 2583337c7c
2 changed files with 21 additions and 2 deletions

View File

@ -10,10 +10,27 @@ config GDB_CROSS
if GDB_CROSS
config GDB_CROSS_USE_GMP_MPFR
bool
prompt "Use GMP/MPFR"
default n
select GMP
select MPFR
select GDB_CROSS_NO_STATIC
help
gdb can use GMP+MPFR, although it does not seem compulsory.
Say 'Y' here if you want to use GMP+MPFR.
config GDB_CROSS_NO_STATIC
bool
default n
config GDB_CROSS_STATIC
bool
prompt "Build a static cross gdb"
default n
depends on ! GDB_CROSS_NO_STATIC
help
A static cross gdb can be usefull if you debug on a machine that is
not the one that is used to compile the toolchain.

View File

@ -99,8 +99,10 @@ do_debug_gdb_build() {
cd "${CT_BUILD_DIR}/build-gdb-cross"
cross_extra_config=("${extra_config[@]}")
[ -z "${CT_GMP}" ] || cross_extra_config+=("--with-gmp=${CT_PREFIX_DIR}")
[ -z "${CT_MPFR}" ] || cross_extra_config+=("--with-mpfr=${CT_PREFIX_DIR}")
if [ "${CT_GDB_CROSS_USE_GMP_MPFR}" = "y" ]; then
cross_extra_config+=("--with-gmp=${CT_PREFIX_DIR}")
cross_extra_config+=("--with-mpfr=${CT_PREFIX_DIR}")
fi
case "${CT_THREADS}" in
none) cross_extra_config+=("--disable-threads");;
*) cross_extra_config+=("--enable-threads");;