Changeset 8d37a06 in mainline for contrib/toolchain/toolchain.ia64.sh
- Timestamp:
- 2007-03-27T22:35:16Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2057572
- Parents:
- 5d7daff
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/toolchain/toolchain.ia64.sh
r5d7daff r8d37a06 17 17 18 18 BINUTILS_VERSION="2.17" 19 GCC_VERSION="4.1. 1"19 GCC_VERSION="4.1.2" 20 20 21 21 INCLUDES="ia64-pc-gnu-linux_includes.tar.bz2" … … 32 32 WORKDIR=`pwd` 33 33 TARGET="${PLATFORM}-pc-linux-gnu" 34 HOST="i686-pc-linux-gnu"35 34 PREFIX="/usr/local/${PLATFORM}" 36 35 INCLUDESDIR="${WORKDIR}/include" … … 91 90 cd "${BINUTILSDIR}" 92 91 check_error $? "Change directory failed." 93 ./configure "-- host=${HOST}" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" "--disable-nls"92 ./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" "--disable-nls" 94 93 check_error $? "Error configuring binutils." 95 94 make all install … … 99 98 cd "${OBJDIR}" 100 99 check_error $? "Change directory failed." 101 "${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 "--with-headers=${INCLUDESDIR}" --disable-shared100 "${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 "--with-headers=${INCLUDESDIR}" --disable-shared 102 101 check_error $? "Error configuring GCC." 103 102 PATH="${PATH}:${PREFIX}/bin" make all-gcc install-gcc
Note:
See TracChangeset
for help on using the changeset viewer.