gcc 10.1.0

This commit is contained in:
vectorsigma72 2020-05-14 14:09:52 +02:00
parent 42d5aa6a97
commit 6241b27185
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ set -u # exit with error if unbound variables
# here we can change source versions of tools
#
export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.34}
export GCC_VERSION=${GCC_VERSION:-9.3.0}
export GCC_VERSION=${GCC_VERSION:-10.1.0}
# Version of libraries are from ./contrib/download_prerequisites in gcc source directory
export GMP_VERSION=${GMP_VERSION:-gmp-6.2.0}

View File

@ -5,7 +5,7 @@
# Linux users should be able to use this wrapper, although the following are needed:
# (Ubuntu alike)
# sudo apt-get install build-essential uuid-dev iasl git gcc-9 nasm python3-distutils
# sudo apt-get install build-essential uuid-dev iasl git gcc-10 nasm python3-distutils
# $1 argument override MYTOOLCHAIN variable, in case you want GCC53 for example
@ -83,7 +83,7 @@ if [[ "$SYSNAME" == Darwin ]]; then
if [[ $MYTOOLCHAIN == GCC* ]] && [[ ! -x "${GCC53_BIN}" ]]; then
if [[ $MYTOOLCHAIN == GCC53 ]]; then
cd "${CLOVERROOT}"
./build_gcc9.sh
./build_gcc10.sh
else
MYTOOLCHAIN=XCODE8
fi