Changes in tools/toolchain.sh [f6017ee:59649f3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
rf6017ee r59649f3 53 53 EOF 54 54 55 ISL_MAIN=<<EOF 56 isl_ctx_get_max_operations (isl_ctx_alloc ()); 57 EOF 58 59 BINUTILS_VERSION="2.26" 55 BINUTILS_VERSION="2.23.1" 60 56 BINUTILS_RELEASE="" 61 ##BINUTILS_PATCHES="toolchain-binutils-2.23.1.patch"62 GCC_VERSION=" 6.1.0"63 ##GCC_PATCHES="toolchain-gcc-4.8.1-targets.patch toolchain-gcc-4.8.1-headers.patch"64 GDB_VERSION="7. 11"65 ##GDB_PATCHES="toolchain-gdb-7.6.1.patch"57 BINUTILS_PATCHES="toolchain-binutils-2.23.1.patch" 58 GCC_VERSION="4.8.1" 59 GCC_PATCHES="toolchain-gcc-4.8.1-targets.patch toolchain-gcc-4.8.1-headers.patch" 60 GDB_VERSION="7.6.1" 61 GDB_PATCHES="toolchain-gdb-7.6.1.patch" 66 62 67 63 BASEDIR="`pwd`" … … 69 65 BINUTILS="binutils-${BINUTILS_VERSION}${BINUTILS_RELEASE}.tar.bz2" 70 66 GCC="gcc-${GCC_VERSION}.tar.bz2" 71 GDB="gdb-${GDB_VERSION}.tar. gz"67 GDB="gdb-${GDB_VERSION}.tar.bz2" 72 68 73 69 REAL_INSTALL=true … … 118 114 check_dependency "MPFR" "<mpfr.h>" "${MPFR_MAIN}" 119 115 check_dependency "MPC" "<mpc.h>" "${MPC_MAIN}" 120 check_dependency "isl" "<isl/ctx.h>" "${ISL_MAIN}"121 116 echo 122 117 } … … 220 215 echo " - SED, AWK, Flex, Bison, gzip, bzip2, Bourne Shell" 221 216 echo " - gettext, zlib, Texinfo, libelf, libgomp" 222 echo " - GNU Make, Coreutils, Sharutils, tar"217 echo " - terminfo" 223 218 echo " - GNU Multiple Precision Library (GMP)" 219 echo " - GNU Make" 220 echo " - GNU tar" 221 echo " - GNU Coreutils" 222 echo " - GNU Sharutils" 224 223 echo " - MPFR" 225 224 echo " - MPC" 226 echo " - integer point manipulation library (isl)" 227 echo " - native C and C++ compiler, assembler and linker" 228 echo " - native C and C++ standard library with headers" 225 echo " - Parma Polyhedra Library (PPL)" 226 echo " - ClooG-PPL" 227 echo " - native C compiler, assembler and linker" 228 echo " - native C library with headers" 229 229 echo 230 230 } … … 311 311 echo " >>> Unpacking ${DESC}" 312 312 313 case "${FILE}" in 314 *.gz) 315 tar -xzf "${FILE}" 316 ;; 317 *.xz) 318 tar -xJf "${FILE}" 319 ;; 320 *.bz2) 321 tar -xjf "${FILE}" 322 ;; 323 *) 324 check_error 1 "Don't know how to unpack ${DESC}." 325 ;; 326 esac 313 tar -xjf "${FILE}" 327 314 check_error $? "Error unpacking ${DESC}." 328 315 } … … 349 336 GDB_SOURCE="ftp://ftp.gnu.org/gnu/gdb/" 350 337 351 download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" " 64146a0faa3b411ba774f47d41de239f"352 download_fetch "${GCC_SOURCE}" "${GCC}" " 8fb6cb98b8459f5863328380fbf06bd1"353 download_fetch "${GDB_SOURCE}" "${GDB}" "f 585059252836a981ea5db9a5f8ce97f"338 download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" "33adb18c3048d057ac58d07a3f1adb38" 339 download_fetch "${GCC_SOURCE}" "${GCC}" "3b2386c114cd74185aa3754b58a79304" 340 download_fetch "${GDB_SOURCE}" "${GDB}" "fbc4dab4181e6e9937075b43a4ce2732" 354 341 } 355 342
Note:
See TracChangeset
for help on using the changeset viewer.