Changes in tools/toolchain.sh [59649f3:f6017ee] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r59649f3 rf6017ee 53 53 EOF 54 54 55 BINUTILS_VERSION="2.23.1" 55 ISL_MAIN=<<EOF 56 isl_ctx_get_max_operations (isl_ctx_alloc ()); 57 EOF 58 59 BINUTILS_VERSION="2.26" 56 60 BINUTILS_RELEASE="" 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"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" 62 66 63 67 BASEDIR="`pwd`" … … 65 69 BINUTILS="binutils-${BINUTILS_VERSION}${BINUTILS_RELEASE}.tar.bz2" 66 70 GCC="gcc-${GCC_VERSION}.tar.bz2" 67 GDB="gdb-${GDB_VERSION}.tar. bz2"71 GDB="gdb-${GDB_VERSION}.tar.gz" 68 72 69 73 REAL_INSTALL=true … … 114 118 check_dependency "MPFR" "<mpfr.h>" "${MPFR_MAIN}" 115 119 check_dependency "MPC" "<mpc.h>" "${MPC_MAIN}" 120 check_dependency "isl" "<isl/ctx.h>" "${ISL_MAIN}" 116 121 echo 117 122 } … … 215 220 echo " - SED, AWK, Flex, Bison, gzip, bzip2, Bourne Shell" 216 221 echo " - gettext, zlib, Texinfo, libelf, libgomp" 217 echo " - terminfo"222 echo " - GNU Make, Coreutils, Sharutils, tar" 218 223 echo " - GNU Multiple Precision Library (GMP)" 219 echo " - GNU Make"220 echo " - GNU tar"221 echo " - GNU Coreutils"222 echo " - GNU Sharutils"223 224 echo " - MPFR" 224 225 echo " - MPC" 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" 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" 229 229 echo 230 230 } … … 311 311 echo " >>> Unpacking ${DESC}" 312 312 313 tar -xjf "${FILE}" 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 314 327 check_error $? "Error unpacking ${DESC}." 315 328 } … … 336 349 GDB_SOURCE="ftp://ftp.gnu.org/gnu/gdb/" 337 350 338 download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" " 33adb18c3048d057ac58d07a3f1adb38"339 download_fetch "${GCC_SOURCE}" "${GCC}" " 3b2386c114cd74185aa3754b58a79304"340 download_fetch "${GDB_SOURCE}" "${GDB}" "f bc4dab4181e6e9937075b43a4ce2732"351 download_fetch "${BINUTILS_SOURCE}" "${BINUTILS}" "64146a0faa3b411ba774f47d41de239f" 352 download_fetch "${GCC_SOURCE}" "${GCC}" "8fb6cb98b8459f5863328380fbf06bd1" 353 download_fetch "${GDB_SOURCE}" "${GDB}" "f585059252836a981ea5db9a5f8ce97f" 341 354 } 342 355
Note:
See TracChangeset
for help on using the changeset viewer.