Changes in tools/toolchain.sh [2385952:145d16f8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r2385952 r145d16f8 55 55 BINUTILS_VERSION="2.22" 56 56 BINUTILS_RELEASE="" 57 GCC_VERSION="4. 7.0"57 GCC_VERSION="4.6.3" 58 58 GDB_VERSION="7.4" 59 59 60 60 BASEDIR="`pwd`" 61 61 BINUTILS="binutils-${BINUTILS_VERSION}${BINUTILS_RELEASE}.tar.bz2" 62 GCC="gcc-${GCC_VERSION}.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" 63 65 GDB="gdb-${GDB_VERSION}.tar.bz2" 64 66 … … 273 275 274 276 download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" "ee0f10756c84979622b992a4a61ea3f5" 275 download_fetch "${GCC_SOURCE}" "${GCC}" "2a0f1d99fda235c29d40b561f81d9a77" 277 download_fetch "${GCC_SOURCE}" "${GCC_CORE}" "766091220c6a14fcaa2c06dd573e3758" 278 download_fetch "${GCC_SOURCE}" "${GCC_OBJC}" "48ba23770c34b1cb468f72618b4452c5" 279 download_fetch "${GCC_SOURCE}" "${GCC_CPP}" "37515158a0fb3d0800ec41a08c05e69e" 276 280 download_fetch "${GDB_SOURCE}" "${GDB}" "95a9a8305fed4d30a30a6dc28ff9d060" 277 281 } … … 295 299 echo ">>> Downloading tarballs" 296 300 source_check "${BASEDIR}/${BINUTILS}" 297 source_check "${BASEDIR}/${GCC}" 301 source_check "${BASEDIR}/${GCC_CORE}" 302 source_check "${BASEDIR}/${GCC_OBJC}" 303 source_check "${BASEDIR}/${GCC_CPP}" 298 304 source_check "${BASEDIR}/${GDB}" 299 305 … … 310 316 311 317 unpack_tarball "${BASEDIR}/${BINUTILS}" "binutils" 312 unpack_tarball "${BASEDIR}/${GCC}" "GCC" 318 unpack_tarball "${BASEDIR}/${GCC_CORE}" "GCC Core" 319 unpack_tarball "${BASEDIR}/${GCC_OBJC}" "Objective C" 320 unpack_tarball "${BASEDIR}/${GCC_CPP}" "C++" 313 321 unpack_tarball "${BASEDIR}/${GDB}" "GDB" 314 322 … … 370 378 "arm32") 371 379 prepare 372 build_target "arm32" "arm-linux-gnu eabi"380 build_target "arm32" "arm-linux-gnu" 373 381 ;; 374 382 "ia32") … … 407 415 prepare 408 416 build_target "amd64" "amd64-linux-gnu" 409 build_target "arm32" "arm-linux-gnu eabi"417 build_target "arm32" "arm-linux-gnu" 410 418 build_target "ia32" "i686-pc-linux-gnu" 411 419 build_target "ia64" "ia64-pc-linux-gnu" … … 420 428 prepare 421 429 build_target "amd64" "amd64-linux-gnu" & 422 build_target "arm32" "arm-linux-gnu eabi" &430 build_target "arm32" "arm-linux-gnu" & 423 431 build_target "ia32" "i686-pc-linux-gnu" & 424 432 build_target "ia64" "ia64-pc-linux-gnu" &
Note:
See TracChangeset
for help on using the changeset viewer.