summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorromangareev <romangareev@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-18 15:42:11 +0000
committerromangareev <romangareev@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-18 15:42:11 +0000
commit429cca5154707b85df6b5b7a678441fdf8fd9b8a (patch)
treea353a3d31ffda81ef6d90612de9127c49b5fe3d1 /config
parent95e631b86f0f367b7cbb4ef744b238576885e587 (diff)
downloadgcc-429cca5154707b85df6b5b7a678441fdf8fd9b8a.tar.gz
* configure.ac: Eliminate ClooG installation dependency.
* configure: Regenerate. * Makefile.tpl: Add definition of ISLLIBS and HOST_ISLLIBS. * Makefile.in: Regenerate. [config/] * cloog.m4: Remove the path to isllibs from clooglibs. * isl.m4: Add paths to islinc, isllibs. [gcc/] * Makefile.in: Add definition of ISLLIBS, HOST_ISLLIBS. * config.in: Add undef of HAVE_isl. * configure: Regenerate. * configure.ac: Add definition of HAVE_isl. * graphite-blocking.c: Add checking of HAVE_isl. * graphite-dependences.c: Likewise. * graphite-interchange.c: Likewise. * graphite-isl-ast-to-gimple.c: Likewise. * graphite-optimize-isl.c: Likewise. * graphite-poly.c: Likewise. * graphite-scop-detection.c: Likewise. * graphite-sese-to-poly.c: Likewise. * graphite.c: Likewise. * toplev.c: Replace the checking of HAVE_cloog with the checking of HAVE_isl. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214106 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog5
-rw-r--r--config/cloog.m42
-rw-r--r--config/isl.m43
3 files changed, 9 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 34fe7a664ee..3a0d438cd51 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,8 @@
+2014-08-18 Roman Gareev <gareevroman@gmail.com>
+
+ * cloog.m4: Remove the path to isllibs from clooglibs.
+ * isl.m4: Add paths to islinc, isllibs.
+
2014-07-26 Uros Bizjak <ubizjak@gmail.com>
PR target/47230
diff --git a/config/cloog.m4 b/config/cloog.m4
index d67465c3f22..b80ac2742aa 100644
--- a/config/cloog.m4
+++ b/config/cloog.m4
@@ -69,7 +69,7 @@ AC_DEFUN([CLOOG_INIT_FLAGS],
fi
clooginc="-DCLOOG_INT_GMP ${clooginc}"
- clooglibs="${clooglibs} -lcloog-isl ${isllibs} -lisl"
+ clooglibs="${clooglibs} -lcloog-isl"
]
)
diff --git a/config/isl.m4 b/config/isl.m4
index f45854d222b..9743aee0e13 100644
--- a/config/isl.m4
+++ b/config/isl.m4
@@ -68,6 +68,9 @@ AC_DEFUN([ISL_INIT_FLAGS],
ENABLE_ISL_CHECK=no
AC_MSG_WARN([using in-tree ISL, disabling version check])
fi
+
+ islinc="-DCLOOG_INT_GMP ${islinc}"
+ isllibs="${isllibs} -lisl"
]
)