Upgrade GCC and MTOC versions

This commit is contained in:
zenith432 2019-03-30 15:17:15 +00:00
parent 9a86a751e7
commit 95e33bae4b
3 changed files with 8 additions and 6 deletions

View File

@ -41,7 +41,7 @@ if [ "$nasmcheck" == 200 ]; then
fi
export NASM_VERSION="${nasmVersInfo:154:$verLen}"
else
export NASM_VERSION=2.13.03
export NASM_VERSION=2.14.02
fi
#

View File

@ -27,14 +27,14 @@ 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.31.1}
export GCC_VERSION=${GCC_VERSION:-8.2.0}
export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.32}
export GCC_VERSION=${GCC_VERSION:-8.3.0}
# Version of libraries are from ./contrib/download_prerequisites in gcc source directory
export GMP_VERSION=${GMP_VERSION:-gmp-6.1.2}
export MPFR_VERSION=${MPFR_VERSION:-mpfr-4.0.1}
export MPFR_VERSION=${MPFR_VERSION:-mpfr-4.0.2}
export MPC_VERSION=${MPC_VERSION:-mpc-1.1.0}
export ISL_VERSION=${ISL_VERSION:-isl-0.19}
export ISL_VERSION=${ISL_VERSION:-isl-0.21}
# Change PREFIX if you want gcc and binutils
# installed on different place

View File

@ -6,7 +6,7 @@
# Ctools source version
# here we can change source versions of tools
#
export CCTOOLS_VERSION=${CCTOOLS_VERSION:-895}
export CCTOOLS_VERSION=${CCTOOLS_VERSION:-921}
# Change PREFIX if you want mtoc installed on different place
#
@ -158,6 +158,8 @@ fnCompileMtoc ()
# Mtoc build
local cmd logfile
cd "$CCTOOLS_DIR"
# Removal of _structs.h needed as a workaround for a bug in cctools-900 or above
/bin/rm -f ./include/mach/i386/_structs.h
echo "- cctools-${CCTOOLS_VERSION} make mtoc..."
cmd="(make LTO= EFITOOLS=efitools -C libstuff) && (make -C efitools)"
logfile="$DIR_LOGS/mtoc.make.log.txt"