diff -r dc167f43e3dc -r 9a8f0e3fe605 scripts/build/debug/300-gdb.sh --- a/scripts/build/debug/300-gdb.sh Sun Jul 11 22:26:29 2010 +0200 +++ b/scripts/build/debug/300-gdb.sh Mon Aug 23 10:38:15 2010 +0200 @@ -79,13 +79,6 @@ cd "${CT_BUILD_DIR}/build-gdb-cross" cross_extra_config=("${extra_config[@]}") - 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 - if [ "${CT_GDB_CROSS_USE_MPC}" = "y" ]; then - cross_extra_config+=("--with-mpc=${CT_PREFIX_DIR}") - fi case "${CT_THREADS}" in none) cross_extra_config+=("--disable-threads");; *) cross_extra_config+=("--enable-threads");; @@ -199,10 +192,6 @@ none) native_extra_config+=("--disable-threads");; *) native_extra_config+=("--enable-threads");; esac - if [ "${CT_GDB_NATIVE_USE_GMP_MPFR}" = "y" ]; then - native_extra_config+=("--with-gmp=${CT_SYSROOT_DIR}/usr") - native_extra_config+=("--with-mpfr=${CT_SYSROOT_DIR}/usr") - fi if [ "${CT_GDB_NATIVE_STATIC}" = "y" ]; then CC_for_gdb="${CT_TARGET}-gcc -static"