Changes in tools/toolchain.sh [7d6f7d2b:caad59a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r7d6f7d2b rcaad59a 142 142 143 143 BINUTILS_VERSION="2.20" 144 GCC_VERSION="4. 4.3"144 GCC_VERSION="4.5.0" 145 145 146 146 BINUTILS="binutils-${BINUTILS_VERSION}.tar.bz2" … … 165 165 echo ">>> Downloading tarballs" 166 166 download_check "${BINUTILS_SOURCE}" "${BINUTILS}" "ee2d3e996e9a2d669808713360fa96f8" 167 download_check "${GCC_SOURCE}" "${GCC_CORE}" " 054b66f315b3d04ad06544ce26e72365"168 download_check "${GCC_SOURCE}" "${GCC_OBJC}" " 34711c4de46eaf79aa018206dbec4389"169 download_check "${GCC_SOURCE}" "${GCC_CPP}" " cd179ec4f05ee17ce76464da25a2674c"167 download_check "${GCC_SOURCE}" "${GCC_CORE}" "58eda33c3184303628f91c42a7ab15b5" 168 download_check "${GCC_SOURCE}" "${GCC_OBJC}" "8d8c01b6631b020cc6c167860fde2398" 169 download_check "${GCC_SOURCE}" "${GCC_CPP}" "5ab93605af40def4844eda09ca769c2d" 170 170 171 171 echo ">>> Removing previous content" … … 196 196 cd "${OBJDIR}" 197 197 check_error $? "Change directory failed." 198 "${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 198 "${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 199 199 check_error $? "Error configuring GCC." 200 200 PATH="${PATH}:${PREFIX}/bin" make all-gcc install-gcc
Note:
See TracChangeset
for help on using the changeset viewer.