aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorTobias Burnus <burnus@net-b.de>2014-11-11 07:55:31 +0100
committerTobias Burnus <burnus@gcc.gnu.org>2014-11-11 07:55:31 +0100
commit51f784f57313a0b2422f147e51ad398eb2e4536a (patch)
tree4216758301fb463cb8086b8c890da8b0e03d5501 /contrib
parent14f68c3965a2ceb64228341bb5769155b1eb2e13 (diff)
downloadgcc-51f784f57313a0b2422f147e51ad398eb2e4536a.zip
gcc-51f784f57313a0b2422f147e51ad398eb2e4536a.tar.gz
gcc-51f784f57313a0b2422f147e51ad398eb2e4536a.tar.bz2
download_prerequisites: Stop downloading CLooG.
2014-11-11 Tobias Burnus <burnus@net-b.de> contrib/ * download_prerequisites: Stop downloading CLooG. gcc/ * doc/install.texi (Prerequisites): Remove CLooG. From-SVN: r217339
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/download_prerequisites5
2 files changed, 4 insertions, 5 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 9dcc7ea..b56e667 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2014-11-11 Tobias Burnus <burnus@net-b.de>
+
+ * download_prerequisites: Stop downloading CLooG.
+
2014-11-07 Marat Zakirov <m.zakirov@samsung.com>
* mklog: Always doubt in functions.
diff --git a/contrib/download_prerequisites b/contrib/download_prerequisites
index cc27143..a9a9f02 100755
--- a/contrib/download_prerequisites
+++ b/contrib/download_prerequisites
@@ -44,13 +44,8 @@ ln -sf $MPC mpc || exit 1
# Necessary to build GCC with the Graphite loop optimizations.
if [ "$GRAPHITE_LOOP_OPT" = "yes" ] ; then
ISL=isl-0.12.2
- CLOOG=cloog-0.18.1
wget ftp://gcc.gnu.org/pub/gcc/infrastructure/$ISL.tar.bz2 || exit 1
tar xjf $ISL.tar.bz2 || exit 1
ln -sf $ISL isl || exit 1
-
- wget ftp://gcc.gnu.org/pub/gcc/infrastructure/$CLOOG.tar.gz || exit 1
- tar xzf $CLOOG.tar.gz || exit 1
- ln -sf $CLOOG cloog || exit 1
fi