From: Lawrence S. <ljs...@us...> - 2018-09-18 16:17:52
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via dd6425c529e0a04ead6357f6500aba7aa097710a (commit) from b03dd965b2dec35de2cd04b96c133e81c95ac789 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit dd6425c529e0a04ead6357f6500aba7aa097710a Author: Lawrence Sebald <ljs...@us...> Date: Tue Sep 18 12:17:28 2018 -0400 Update binutils version to 2.31.1 in dc-chain. ----------------------------------------------------------------------- Summary of changes: utils/dc-chain/Makefile | 4 +--- utils/dc-chain/cleanup.sh | 4 ++-- utils/dc-chain/download.sh | 6 +++--- utils/dc-chain/unpack.sh | 8 ++++---- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/utils/dc-chain/Makefile b/utils/dc-chain/Makefile index 39ba7f2..ac0dddc 100644 --- a/utils/dc-chain/Makefile +++ b/utils/dc-chain/Makefile @@ -28,7 +28,7 @@ arm_prefix := /opt/toolchains/dc/$(arm_target) kos_root=$(CURDIR)/../../.. # kos_base: equivalent of KOS_BASE (contains include/ and kernel/) kos_base=$(CURDIR)/../.. -binutils_ver=2.27 +binutils_ver=2.31.1 gcc_ver=4.7.3 newlib_ver=2.0.0 gdb_ver=7.11.1 @@ -148,8 +148,6 @@ $(build_binutils): src_dir = binutils-$(binutils_ver) $(build_binutils): log = $(logdir)/$(build).log $(build_binutils): logdir @echo "+++ Building $(src_dir) to $(build)..." - sed -e 's/ @colophon/ @@colophon/' -e 's/do...@cy.../doc@@cygnus.com/' $(src_dir)/bfd/doc/bfd.texinfo > $(src_dir)/bfd/doc/bfd.texinfo2 - mv $(src_dir)/bfd/doc/bfd.texinfo2 $(src_dir)/bfd/doc/bfd.texinfo -mkdir -p $(build) > $(log) cd $(build); ../$(src_dir)/configure --target=$(target) --prefix=$(prefix) --disable-werror CXX=$(CXX) $(to_log) diff --git a/utils/dc-chain/cleanup.sh b/utils/dc-chain/cleanup.sh index cf73a8e..71c74d9 100755 --- a/utils/dc-chain/cleanup.sh +++ b/utils/dc-chain/cleanup.sh @@ -2,7 +2,7 @@ # These version numbers are all that should ever have to be changed. export GCC_VER=4.7.3 -export BINUTILS_VER=2.27 +export BINUTILS_VER=2.31.1 export NEWLIB_VER=2.0.0 export GMP_VER=4.3.2 export MPFR_VER=2.4.2 @@ -35,7 +35,7 @@ done # Clean up downloaded tarballs... echo "Deleting downloaded packages..." -rm -f binutils-$BINUTILS_VER.tar.bz2 +rm -f binutils-$BINUTILS_VER.tar.xz rm -f gcc-$GCC_VER.tar.bz2 rm -f newlib-$NEWLIB_VER.tar.gz diff --git a/utils/dc-chain/download.sh b/utils/dc-chain/download.sh index 67f17b5..d96b28f 100755 --- a/utils/dc-chain/download.sh +++ b/utils/dc-chain/download.sh @@ -2,7 +2,7 @@ # These version numbers are all that should ever have to be changed. export GCC_VER=4.7.3 -export BINUTILS_VER=2.27 +export BINUTILS_VER=2.31.1 export NEWLIB_VER=2.0.0 export GMP_VER=4.3.2 export MPFR_VER=2.4.2 @@ -36,7 +36,7 @@ done # Download everything. if command -v wget >/dev/null 2>&1; then echo "Downloading binutils-$BINUTILS_VER..." - wget -c ftp://ftp.gnu.org/gnu/binutils/binutils-$BINUTILS_VER.tar.bz2 || exit 1 + wget -c ftp://ftp.gnu.org/gnu/binutils/binutils-$BINUTILS_VER.tar.xz || exit 1 echo "Downloading GCC $GCC_VER..." wget -c ftp://ftp.gnu.org/gnu/gcc/gcc-$GCC_VER/gcc-$GCC_VER.tar.bz2 || exit 1 echo "Downloading Newlib $NEWLIB_VER..." @@ -58,7 +58,7 @@ if command -v wget >/dev/null 2>&1; then fi elif command -v curl >/dev/null 2>&1; then echo "Downloading Binutils $BINUTILS_VER..." - curl -C - -O ftp://ftp.gnu.org/gnu/binutils/binutils-$BINUTILS_VER.tar.bz2 || exit 1 + curl -C - -O ftp://ftp.gnu.org/gnu/binutils/binutils-$BINUTILS_VER.tar.xz || exit 1 echo "Downloading GCC $GCC_VER..." curl -C - -O ftp://ftp.gnu.org/gnu/gcc/gcc-$GCC_VER/gcc-$GCC_VER.tar.bz2 || exit 1 echo "Downloading Newlib $NEWLIB_VER..." diff --git a/utils/dc-chain/unpack.sh b/utils/dc-chain/unpack.sh index 25d39f9..8a6b25e 100755 --- a/utils/dc-chain/unpack.sh +++ b/utils/dc-chain/unpack.sh @@ -2,7 +2,7 @@ # These version numbers are all that should ever have to be changed. export GCC_VER=4.7.3 -export BINUTILS_VER=2.27 +export BINUTILS_VER=2.31.1 export NEWLIB_VER=2.0.0 export GMP_VER=4.3.2 export MPFR_VER=2.4.2 @@ -38,9 +38,9 @@ rm -rf binutils-$BINUTILS_VER gcc-$GCC_VER newlib-$NEWLIB_VER rm -rf gmp-$GMP_VER mpfr-$MPFR_VER mpc-$MPC_VER # Unpack everything. -tar jxf binutils-$BINUTILS_VER.tar.bz2 || exit 1 -tar jxf gcc-$GCC_VER.tar.bz2 || exit 1 -tar zxf newlib-$NEWLIB_VER.tar.gz || exit 1 +tar xf binutils-$BINUTILS_VER.tar.xz || exit 1 +tar xf gcc-$GCC_VER.tar.bz2 || exit 1 +tar xf newlib-$NEWLIB_VER.tar.gz || exit 1 # Unpack the GCC dependencies and move them into their required locations. if [ -n "$GMP_VER" ]; then hooks/post-receive -- A pseudo Operating System for the Dreamcast. |