From 20f784cde8ceba72b0068dd938c0ccf65c662e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20P=C3=B6chtrager?= Date: Sat, 29 Aug 2015 12:47:48 +0200 Subject: [PATCH] Update Binutils & GDB version --- build_binutils.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build_binutils.sh b/build_binutils.sh index ee7a7d1..8f068b1 100755 --- a/build_binutils.sh +++ b/build_binutils.sh @@ -9,9 +9,14 @@ source tools/tools.sh eval $(tools/osxcross_conf.sh) # binutils version to build -BINUTILS_VERSION=2.25 +if [ -z "$BINUTILS_VERSION" ]; then + BINUTILS_VERSION=2.25.1 +fi + # gdb version to build -GDB_VERSION=7.8.2 +if [ -z "$GDB_VERSION" ]; then + GDB_VERSION=7.10 +fi # mirror MIRROR="ftp://sourceware.org/pub"