aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2016-08-18 09:22:02 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2016-08-18 09:22:02 +0000
commit24e029580b74961b3108e6f8b19e8120ba3e3745 (patch)
treecc5912060b626206026ad8927860b999f1db7a5c /contrib
parentdeea1cb0e8e4e58108148f200162c7fd73efc170 (diff)
2016-08-18 Richard Biener <rguenther@suse.de>
PR bootstrap/77297 * download_prerequisites: Patch ISL 0.15 to remove trailing comma which causes PR77297. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-6-branch@239562 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog6
-rwxr-xr-xcontrib/download_prerequisites2
2 files changed, 8 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 76cfe5907aa..8f7d0a1b4b5 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,9 @@
+2016-08-18 Richard Biener <rguenther@suse.de>
+
+ PR bootstrap/77297
+ * download_prerequisites: Patch ISL 0.15 to remove trailing comma
+ which causes PR77297.
+
2016-04-27 Release Manager
* GCC 6.1.0 released.
diff --git a/contrib/download_prerequisites b/contrib/download_prerequisites
index cf97ec9daa8..1080dded1da 100755
--- a/contrib/download_prerequisites
+++ b/contrib/download_prerequisites
@@ -52,5 +52,7 @@ if [ "$GRAPHITE_LOOP_OPT" = "yes" ] ; then
wget ftp://gcc.gnu.org/pub/gcc/infrastructure/$ISL.tar.bz2 || exit 1
tar xjf $ISL.tar.bz2 || exit 1
+ # Fix trailing comma which errors with -pedantic for host GCC <= 4.3
+ sed -e 's/isl_stat_ok = 0,/isl_stat_ok = 0/' isl-0.15/include/isl/ctx.h > isl-0.15/include/isl/ctx.h.tem && mv isl-0.15/include/isl/ctx.h.tem isl-0.15/include/isl/ctx.h
ln -sf $ISL isl || exit 1
fi