Skip to content

Commit

Permalink
Bump to most recent versions of GNU tools. (#13)
Browse files Browse the repository at this point in the history
* Bump POSIX toolchain to binutils-2.32, gcc-9.1.0.

Signed-off-by: Tyler J. Stachecki <[email protected]>

* Bump Windows toolchain to binutils-2.32, gcc-9.1.0.

Signed-off-by: Tyler J. Stachecki <[email protected]>
  • Loading branch information
tj90241 authored Jul 4, 2019
1 parent 0418436 commit 2402c5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tools/build-posix64-toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ which getconf >/dev/null 2>/dev/null && {

numproc=`getnumproc`

BINUTILS="ftp://ftp.gnu.org/gnu/binutils/binutils-2.30.tar.bz2"
GCC="ftp://ftp.gnu.org/gnu/gcc/gcc-8.1.0/gcc-8.1.0.tar.gz"
BINUTILS="ftp://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.bz2"
GCC="ftp://ftp.gnu.org/gnu/gcc/gcc-9.1.0/gcc-9.1.0.tar.gz"
MAKE="ftp://ftp.gnu.org/gnu/make/make-4.2.1.tar.bz2"

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Expand Down
6 changes: 3 additions & 3 deletions tools/build-win64-toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ set -eu
# 'LICENSE', which is part of this source code package.
#

BINUTILS="ftp://ftp.gnu.org/gnu/binutils/binutils-2.30.tar.bz2"
GCC="ftp://ftp.gnu.org/gnu/gcc/gcc-8.1.0/gcc-8.1.0.tar.gz"
BINUTILS="ftp://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.bz2"
GCC="ftp://ftp.gnu.org/gnu/gcc/gcc-9.1.0/gcc-9.1.0.tar.gz"
GMP="ftp://ftp.gnu.org/gnu/gmp/gmp-6.1.2.tar.bz2"
MAKE="ftp://ftp.gnu.org/gnu/make/make-4.2.1.tar.bz2"
MPC="ftp://ftp.gnu.org/gnu/mpc/mpc-1.1.0.tar.gz"
MPFR="ftp://ftp.gnu.org/gnu/mpfr/mpfr-4.0.1.tar.bz2"
MPFR="ftp://ftp.gnu.org/gnu/mpfr/mpfr-4.0.2.tar.bz2"

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd ${SCRIPT_DIR} && mkdir -p {stamps,tarballs}
Expand Down

0 comments on commit 2402c5e

Please sign in to comment.