Changes in tools/toolchain.sh [6abb346:7d248e3] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/toolchain.sh

    r6abb346 r7d248e3  
    4343MPFR_MAIN=<<EOF
    4444#if MPFR_VERSION < MPFR_VERSION_NUM(2, 4, 2)
    45 choke me
    46         #endif
     45        choke me
     46#endif
    4747EOF
    4848
     
    5555BINUTILS_VERSION="2.22"
    5656BINUTILS_RELEASE=""
    57 GCC_VERSION="4.7.0"
    58 GDB_VERSION="7.4"
     57GCC_VERSION="4.7.2"
     58GDB_VERSION="7.5"
    5959
    6060BASEDIR="`pwd`"
     
    192192        echo " - SED, AWK, Flex, Bison, gzip, bzip2, Bourne Shell"
    193193        echo " - gettext, zlib, Texinfo, libelf, libgomp"
     194        echo " - terminfo"
    194195        echo " - GNU Multiple Precision Library (GMP)"
    195196        echo " - GNU Make"
     
    274275       
    275276        download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" "ee0f10756c84979622b992a4a61ea3f5"
    276         download_fetch "${GCC_SOURCE}" "${GCC}" "2a0f1d99fda235c29d40b561f81d9a77"
    277         download_fetch "${GDB_SOURCE}" "${GDB}" "95a9a8305fed4d30a30a6dc28ff9d060"
     277        download_fetch "${GCC_SOURCE}" "${GCC}" "cc308a0891e778cfda7a151ab8a6e762"
     278        download_fetch "${GDB_SOURCE}" "${GDB}" "24a6779a9fe0260667710de1b082ef61"
    278279}
    279280
     
    319320       
    320321        change_title "binutils: configure (${PLATFORM})"
    321         CFLAGS=-Wno-error ./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --disable-nls
     322        CFLAGS=-Wno-error ./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --disable-nls --disable-werror
    322323        check_error $? "Error configuring binutils."
    323324       
     
    331332       
    332333        change_title "GCC: configure (${PLATFORM})"
    333         "${GCCDIR}/configure" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --without-headers --disable-shared --enable-lto
     334        "${GCCDIR}/configure" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --without-headers --disable-shared --enable-lto --disable-werror
    334335        check_error $? "Error configuring GCC."
    335336       
Note: See TracChangeset for help on using the changeset viewer.