Update toolchain to GCC 10.2. If you wish to update, delete Build and toolchain directories.

This commit is contained in:
asava 2020-08-09 09:40:55 +03:00
parent 2a62a98abc
commit d42ba26027

View File

@ -27,12 +27,12 @@ set -u # exit with error if unbound variables
# GCC toolchain source version
# here we can change source versions of tools
#
export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.34}
export GCC_VERSION=${GCC_VERSION:-10.1.0}
export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.35}
export GCC_VERSION=${GCC_VERSION:-10.2.0}
# Version of libraries are from ./contrib/download_prerequisites in gcc source directory
export GMP_VERSION=${GMP_VERSION:-gmp-6.2.0}
export MPFR_VERSION=${MPFR_VERSION:-mpfr-4.0.2}
export MPFR_VERSION=${MPFR_VERSION:-mpfr-4.1.0}
export MPC_VERSION=${MPC_VERSION:-mpc-1.1.0}
export ISL_VERSION=${ISL_VERSION:-isl-0.22.1}