scripts/build/debug/300-gdb.sh
changeset 2098 9a8f0e3fe605
parent 2022 dc167f43e3dc
child 2100 f9fcfc002c8a
     1.1 --- a/scripts/build/debug/300-gdb.sh	Sun Jul 11 22:26:29 2010 +0200
     1.2 +++ b/scripts/build/debug/300-gdb.sh	Mon Aug 23 10:38:15 2010 +0200
     1.3 @@ -79,13 +79,6 @@
     1.4          cd "${CT_BUILD_DIR}/build-gdb-cross"
     1.5  
     1.6          cross_extra_config=("${extra_config[@]}")
     1.7 -        if [ "${CT_GDB_CROSS_USE_GMP_MPFR}" = "y" ]; then
     1.8 -            cross_extra_config+=("--with-gmp=${CT_PREFIX_DIR}")
     1.9 -            cross_extra_config+=("--with-mpfr=${CT_PREFIX_DIR}")
    1.10 -        fi
    1.11 -        if [ "${CT_GDB_CROSS_USE_MPC}" = "y" ]; then
    1.12 -            cross_extra_config+=("--with-mpc=${CT_PREFIX_DIR}")
    1.13 -        fi
    1.14          case "${CT_THREADS}" in
    1.15              none)   cross_extra_config+=("--disable-threads");;
    1.16              *)      cross_extra_config+=("--enable-threads");;
    1.17 @@ -199,10 +192,6 @@
    1.18              none)   native_extra_config+=("--disable-threads");;
    1.19              *)      native_extra_config+=("--enable-threads");;
    1.20          esac
    1.21 -        if [ "${CT_GDB_NATIVE_USE_GMP_MPFR}" = "y" ]; then
    1.22 -            native_extra_config+=("--with-gmp=${CT_SYSROOT_DIR}/usr")
    1.23 -            native_extra_config+=("--with-mpfr=${CT_SYSROOT_DIR}/usr")
    1.24 -        fi
    1.25  
    1.26          if [ "${CT_GDB_NATIVE_STATIC}" = "y" ]; then
    1.27              CC_for_gdb="${CT_TARGET}-gcc -static"