From: <ljs...@us...> - 2012-06-12 01:34:14
|
Revision: 819 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=819&view=rev Author: ljsebald Date: 2012-06-12 01:34:08 +0000 (Tue, 12 Jun 2012) Log Message: ----------- Back to GCC 4.7.0 we go, now that there's a working patch. Modified Paths: -------------- kos/utils/dc-chain/Makefile kos/utils/dc-chain/download.sh kos/utils/dc-chain/unpack.sh Modified: kos/utils/dc-chain/Makefile =================================================================== --- kos/utils/dc-chain/Makefile 2012-06-12 01:29:05 UTC (rev 818) +++ kos/utils/dc-chain/Makefile 2012-06-12 01:34:08 UTC (rev 819) @@ -29,7 +29,7 @@ # kos_base: equivalent of KOS_BASE (contains include/ and kernel/) kos_base=$(kos_root)/kos binutils_ver=2.22 -gcc_ver=4.5.2 +gcc_ver=4.7.0 newlib_ver=1.20.0 gdb_ver=6.7.1 insight_ver=6.7.1 Modified: kos/utils/dc-chain/download.sh =================================================================== --- kos/utils/dc-chain/download.sh 2012-06-12 01:29:05 UTC (rev 818) +++ kos/utils/dc-chain/download.sh 2012-06-12 01:34:08 UTC (rev 819) @@ -1,5 +1,5 @@ #!/bin/sh wget -c ftp://ftp.gnu.org/gnu/binutils/binutils-2.22.tar.bz2 || exit 1 -wget -c ftp://ftp.gnu.org/gnu/gcc/gcc-4.5.2/gcc-4.5.2.tar.bz2 || exit 1 +wget -c ftp://ftp.gnu.org/gnu/gcc/gcc-4.7.0/gcc-4.7.0.tar.bz2 || exit 1 wget -c ftp://sources.redhat.com/pub/newlib/newlib-1.20.0.tar.gz || exit 1 Modified: kos/utils/dc-chain/unpack.sh =================================================================== --- kos/utils/dc-chain/unpack.sh 2012-06-12 01:29:05 UTC (rev 818) +++ kos/utils/dc-chain/unpack.sh 2012-06-12 01:34:08 UTC (rev 819) @@ -1,7 +1,7 @@ #!/bin/sh -rm -rf binutils-2.22 gcc-4.5.2 newlib-1.20.0 +rm -rf binutils-2.22 gcc-4.7.0 newlib-1.20.0 tar jxf binutils-2.22.tar.bz2 || exit 1 -tar jxf gcc-4.5.2.tar.bz2 || exit 1 +tar jxf gcc-4.7.0.tar.bz2 || exit 1 tar zxf newlib-1.20.0.tar.gz || exit 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |