Changeset 8d37a06 in mainline for contrib/toolchain/toolchain.ppc64.sh


Ignore:
Timestamp:
2007-03-27T22:35:16Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2057572
Parents:
5d7daff
Message:

move to GCC 4.1.2, make scripts really host platform independent
remove orphaned libobjc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/toolchain/toolchain.ppc64.sh

    r5d7daff r8d37a06  
    1717
    1818BINUTILS_VERSION="2.17"
    19 GCC_VERSION="4.1.1"
     19GCC_VERSION="4.1.2"
    2020
    2121BINUTILS="binutils-${BINUTILS_VERSION}.tar.gz"
     
    3030WORKDIR=`pwd`
    3131TARGET="${PLATFORM}-linux-gnu"
    32 HOST="i686-pc-linux-gnu"
    3332PREFIX="/usr/local/${PLATFORM}"
    3433BINUTILSDIR="${WORKDIR}/binutils-${BINUTILS_VERSION}"
     
    8281cd "${BINUTILSDIR}"
    8382check_error $? "Change directory failed."
    84 ./configure "--host=${HOST}" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" "--disable-nls"
     83./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" "--disable-nls"
    8584check_error $? "Error configuring binutils."
    8685make all install
     
    9089cd "${OBJDIR}"
    9190check_error $? "Change directory failed."
    92 "${GCCDIR}/configure" "--host=${HOST}" "--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
     91"${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
    9392check_error $? "Error configuring GCC."
    9493PATH="${PATH}:${PREFIX}/bin" make all-gcc install-gcc
Note: See TracChangeset for help on using the changeset viewer.