diff options
author | Richard Guenther <rguenther@suse.de> | 2012-07-03 09:44:53 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-07-03 09:44:53 +0000 |
commit | 32d024bfd2d64f70860d80d1a937ea2b7aa4117b (patch) | |
tree | edace4e99ce490226712a141b75d7208629bdac5 /configure | |
parent | 90d4f2330e4aa883d164d4ca4401b70443006950 (diff) | |
download | gcc-32d024bfd2d64f70860d80d1a937ea2b7aa4117b.tar.gz |
cloog.m4: Remove debugging print.
2012-07-03 Richard Guenther <rguenther@suse.de>
config/
* cloog.m4: Remove debugging print.
* Makefile.def (cloog): Add V=1 to extra_make_flags.
* configure.ac: If either the ISL or the CLooG check failed
do not try to build in-tree versions.
* Makefile.in: Regenerated.
* configure: Regenerated.
From-SVN: r189209
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/configure b/configure index d452fa7c2b4..62f006c6eca 100755 --- a/configure +++ b/configure @@ -5822,7 +5822,6 @@ fi fi if test "x${clooginc}" == x && test "x${clooglibs}" == x \ && test -d ${srcdir}/cloog; then - echo FooBar clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' ' clooginc='-I$$r/$(HOST_SUBDIR)/cloog/include -I$$s/cloog/include -I'${srcdir}'/cloog/include ' fi @@ -5834,7 +5833,10 @@ fi -if test "x$with_cloog" != "xno"; then +if test "x$isllibs" = x && test "x$islinc" = x; then + clooglibs= + clooginc= +elif test "x$with_cloog" != "xno"; then @@ -5912,6 +5914,12 @@ $as_echo "$gcc_cv_cloog" >&6; } fi +# If either the ISL or the CLooG check failed, disable builds of in-tree +# variants of both +if test "x$clooglibs" = x && test "x$clooginc" = x; then + noconfigdirs="$noconfigdirs cloog isl" +fi + # Check for LTO support. # Check whether --enable-lto was given. if test "${enable_lto+set}" = set; then : |