Changeset 85f2064 in mainline for tools/toolchain.sh


Ignore:
Timestamp:
2012-04-12T14:21:46Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bb8f69d
Parents:
751cabc (diff), d11a181 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/toolchain.sh

    r751cabc r85f2064  
    5555BINUTILS_VERSION="2.22"
    5656BINUTILS_RELEASE=""
    57 GCC_VERSION="4.6.3"
     57GCC_VERSION="4.7.0"
    5858GDB_VERSION="7.4"
    5959
    6060BASEDIR="`pwd`"
    6161BINUTILS="binutils-${BINUTILS_VERSION}${BINUTILS_RELEASE}.tar.bz2"
    62 GCC_CORE="gcc-core-${GCC_VERSION}.tar.bz2"
    63 GCC_OBJC="gcc-objc-${GCC_VERSION}.tar.bz2"
    64 GCC_CPP="gcc-g++-${GCC_VERSION}.tar.bz2"
     62GCC="gcc-${GCC_VERSION}.tar.bz2"
    6563GDB="gdb-${GDB_VERSION}.tar.bz2"
    6664
     
    275273       
    276274        download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" "ee0f10756c84979622b992a4a61ea3f5"
    277         download_fetch "${GCC_SOURCE}" "${GCC_CORE}" "766091220c6a14fcaa2c06dd573e3758"
    278         download_fetch "${GCC_SOURCE}" "${GCC_OBJC}" "48ba23770c34b1cb468f72618b4452c5"
    279         download_fetch "${GCC_SOURCE}" "${GCC_CPP}" "37515158a0fb3d0800ec41a08c05e69e"
     275        download_fetch "${GCC_SOURCE}" "${GCC}" "2a0f1d99fda235c29d40b561f81d9a77"
    280276        download_fetch "${GDB_SOURCE}" "${GDB}" "95a9a8305fed4d30a30a6dc28ff9d060"
    281277}
     
    299295        echo ">>> Downloading tarballs"
    300296        source_check "${BASEDIR}/${BINUTILS}"
    301         source_check "${BASEDIR}/${GCC_CORE}"
    302         source_check "${BASEDIR}/${GCC_OBJC}"
    303         source_check "${BASEDIR}/${GCC_CPP}"
     297        source_check "${BASEDIR}/${GCC}"
    304298        source_check "${BASEDIR}/${GDB}"
    305299       
     
    316310       
    317311        unpack_tarball "${BASEDIR}/${BINUTILS}" "binutils"
    318         unpack_tarball "${BASEDIR}/${GCC_CORE}" "GCC Core"
    319         unpack_tarball "${BASEDIR}/${GCC_OBJC}" "Objective C"
    320         unpack_tarball "${BASEDIR}/${GCC_CPP}" "C++"
     312        unpack_tarball "${BASEDIR}/${GCC}" "GCC"
    321313        unpack_tarball "${BASEDIR}/${GDB}" "GDB"
    322314       
     
    378370        "arm32")
    379371                prepare
    380                 build_target "arm32" "arm-linux-gnu"
     372                build_target "arm32" "arm-linux-gnueabi"
    381373                ;;
    382374        "ia32")
     
    415407                prepare
    416408                build_target "amd64" "amd64-linux-gnu"
    417                 build_target "arm32" "arm-linux-gnu"
     409                build_target "arm32" "arm-linux-gnueabi"
    418410                build_target "ia32" "i686-pc-linux-gnu"
    419411                build_target "ia64" "ia64-pc-linux-gnu"
     
    428420                prepare
    429421                build_target "amd64" "amd64-linux-gnu" &
    430                 build_target "arm32" "arm-linux-gnu" &
     422                build_target "arm32" "arm-linux-gnueabi" &
    431423                build_target "ia32" "i686-pc-linux-gnu" &
    432424                build_target "ia64" "ia64-pc-linux-gnu" &
Note: See TracChangeset for help on using the changeset viewer.