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.ac | |
parent | 90d4f2330e4aa883d164d4ca4401b70443006950 (diff) | |
download | gcc-32d024bfd2d64f70860d80d1a937ea2b7aa4117b.zip gcc-32d024bfd2d64f70860d80d1a937ea2b7aa4117b.tar.gz gcc-32d024bfd2d64f70860d80d1a937ea2b7aa4117b.tar.bz2 |
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.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 12b9c55..9a23049 100644 --- a/configure.ac +++ b/configure.ac @@ -1535,7 +1535,10 @@ fi dnl Provide configure switches and initialize clooginc & clooglibs dnl with user input. CLOOG_INIT_FLAGS -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 dnl The minimal version of CLooG required for Graphite. dnl dnl If we use CLooG-Legacy, the provided version information is @@ -1547,6 +1550,12 @@ if test "x$with_cloog" != "xno"; then AC_MSG_ERROR([Unable to find a usable CLooG. See config.log for details.])]) 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. AC_ARG_ENABLE(lto, [AS_HELP_STRING([--enable-lto], [enable link time optimization support])], |