diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-11 06:55:31 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-11 06:55:31 +0000 |
commit | 69ec49d1991a0ea8b339917182af77b721c955d6 (patch) | |
tree | 4216758301fb463cb8086b8c890da8b0e03d5501 /contrib | |
parent | 51d9ad168be16d8799c7bebfb3fc4a08223dcee4 (diff) | |
download | gcc-69ec49d1991a0ea8b339917182af77b721c955d6.tar.gz |
2014-11-11 Tobias Burnus <burnus@net-b.de>
contrib/
* download_prerequisites: Stop downloading CLooG.
gcc/
* doc/install.texi (Prerequisites): Remove CLooG.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217339 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/download_prerequisites | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 9dcc7ea3ac9..b56e6671de8 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 cc27143ea25..a9a9f029af6 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 |