scripts/build/binutils/binutils.sh
changeset 2097 056a2c826185
parent 1901 bdb3a98e064b
child 2154 250cdcc86441
     1.1 --- a/scripts/build/binutils/binutils.sh	Sun Apr 11 23:18:10 2010 +0200
     1.2 +++ b/scripts/build/binutils/binutils.sh	Mon Aug 23 20:21:43 2010 +0200
     1.3 @@ -24,11 +24,6 @@
     1.4  
     1.5      CT_DoStep INFO "Installing binutils"
     1.6  
     1.7 -    # If GMP and MPFR were configured, then use that,
     1.8 -    # otherwise let binutils find the system-wide libraries, if they exist.
     1.9 -    [ -z "${CT_GMP}"    ] || extra_config+=("--with-gmp=${CT_PREFIX_DIR}")
    1.10 -    [ -z "${CT_MPFR}"   ] || extra_config+=("--with-mpfr=${CT_PREFIX_DIR}")
    1.11 -
    1.12      CT_DoLog EXTRA "Configuring binutils"
    1.13      CFLAGS="${CT_CFLAGS_FOR_HOST}"                              \
    1.14      CT_DoExecLog ALL                                            \
    1.15 @@ -83,12 +78,6 @@
    1.16          install_targets+=("install-${t}")
    1.17      done
    1.18  
    1.19 -    # If GMP and MPFR were configured, then use that
    1.20 -    if [ "${CT_BINUTILS_TARGET_USE_GMP_MPFR}" = "y" ]; then
    1.21 -        extra_config+=("--with-gmp=${CT_SYSROOT_DIR}/usr")
    1.22 -        extra_config+=("--with-mpfr=${CT_SYSROOT_DIR}/usr")
    1.23 -    fi
    1.24 -
    1.25      if [ "${#targets[@]}" -ne 0 ]; then
    1.26          CT_DoStep INFO "Installing binutils for target"
    1.27          mkdir -p "${CT_BUILD_DIR}/build-binutils-for-target"