summaryrefslogtreecommitdiff
path: root/util/crossgcc
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2012-12-07 23:50:01 +0100
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-12-08 00:45:03 +0100
commita348d901c7536023033d23189c15896340a0a23d (patch)
treec9e47bffc610f0fe507ff259fe38aee8daecd1c8 /util/crossgcc
parent969cd931f8461ad3ee9015f8595e5d7872f45b94 (diff)
downloadcoreboot-a348d901c7536023033d23189c15896340a0a23d.tar.xz
buildgcc: drop hack to build gcc trunk versions
The focus of the script is to create a supported cross toolchain, and with GOLD and LTO being released features, we don't need this anymore. Change-Id: Ieb7752ce6e143d93414aba5887190f853cbd5a4b Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1997 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-xutil/crossgcc/buildgcc17
1 files changed, 0 insertions, 17 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index a388fe125e..9e8dc45577 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -234,23 +234,6 @@ fi
USE_GOLD=""
GCC_OPTIONS="--enable-lto"
-if [ ${GCC_VERSION} = "trunk" ]; then
- if [ ! -r tarballs/gcc-core-${GCC_VERSION}.tar.bz2 ]; then
- printf "Pre-Release GCC ${GCC_VERSION}, checking out subversion trunk\n"
- mkdir -p tarballs/.tmp
- cd tarballs/.tmp
- rm -rf gcc-${GCC_VERSION}
- svn export -q svn://gcc.gnu.org/svn/gcc/trunk gcc-${GCC_VERSION}
- printf "done. Now creating tar ball...\n"
- tar cjf ../gcc-core-${GCC_VERSION}.tar.bz2 gcc-${GCC_VERSION}
- printf "done. Now cleaning up...\n"
- cd ..
- rm -rf .tmp
- cd ..
- printf "done.\n"
- fi
-fi
-
printf "Downloading tar balls ... \n"
mkdir -p tarballs
for ARCHIVE in $GMP_ARCHIVE $MPFR_ARCHIVE $MPC_ARCHIVE $LIBELF_ARCHIVE \