diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2014-07-05 20:18:14 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2014-07-05 20:18:14 +0000 |
commit | 9a62ed16dda57ee799dfd0ef12f1800cf48e5908 (patch) | |
tree | f9a955b5134d43f43deb7b0514921b7ac5bfbbd8 | |
parent | a4ff2ef3c063b01e58c92487643e0bf36f66706f (diff) | |
download | gcc-9a62ed16dda57ee799dfd0ef12f1800cf48e5908.zip gcc-9a62ed16dda57ee799dfd0ef12f1800cf48e5908.tar.gz gcc-9a62ed16dda57ee799dfd0ef12f1800cf48e5908.tar.bz2 |
Don't accept isl 0.10.
* configure.ac: Don't accept isl 0.10.
* configure: Regenerate.
From-SVN: r212306
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 51 | ||||
-rw-r--r-- | configure.ac | 7 |
3 files changed, 8 insertions, 55 deletions
@@ -1,3 +1,8 @@ +2014-07-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * configure.ac: Don't accept isl 0.10. + * configure: Regenerate. + 2014-06-23 Bernd Edlinger <bernd.edlinger@hotmail.de> Fix include path for in-tree cloog. @@ -5898,54 +5898,6 @@ $as_echo "$as_me: WARNING: using in-tree ISL, disabling version check" >&2;} LDFLAGS="${_isl_saved_LDFLAGS} ${isllibs}" LIBS="${_isl_saved_LIBS} -lisl" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.10 of ISL" >&5 -$as_echo_n "checking for version 0.10 of ISL... " >&6; } - if test "$cross_compiling" = yes; then : - gcc_cv_isl=yes -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <isl/version.h> - #include <string.h> -int -main () -{ -if (strncmp (isl_version (), "isl-0.10", strlen ("isl-0.10")) != 0) - return 1; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - gcc_cv_isl=yes -else - gcc_cv_isl=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_isl" >&5 -$as_echo "$gcc_cv_isl" >&6; } - - CFLAGS=$_isl_saved_CFLAGS - LDFLAGS=$_isl_saved_LDFLAGS - LIBS=$_isl_saved_LIBS - fi - - - if test "${gcc_cv_isl}" = no ; then - - if test "${ENABLE_ISL_CHECK}" = yes ; then - _isl_saved_CFLAGS=$CFLAGS - _isl_saved_LDFLAGS=$LDFLAGS - _isl_saved_LIBS=$LIBS - - CFLAGS="${_isl_saved_CFLAGS} ${islinc} ${gmpinc}" - LDFLAGS="${_isl_saved_LDFLAGS} ${isllibs}" - LIBS="${_isl_saved_LIBS} -lisl" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.11 of ISL" >&5 $as_echo_n "checking for version 0.11 of ISL... " >&6; } if test "$cross_compiling" = yes; then : @@ -5983,7 +5935,7 @@ $as_echo "$gcc_cv_isl" >&6; } fi - if test "${gcc_cv_isl}" = no ; then + if test "${gcc_cv_isl}" = no ; then if test "${ENABLE_ISL_CHECK}" = yes ; then _isl_saved_CFLAGS=$CFLAGS @@ -6031,7 +5983,6 @@ $as_echo "$gcc_cv_isl" >&6; } fi - fi fi diff --git a/configure.ac b/configure.ac index 9048cd1..d0f7471 100644 --- a/configure.ac +++ b/configure.ac @@ -1650,12 +1650,9 @@ if test "x$with_isl" != "xno" && dnl with user input. ISL_INIT_FLAGS dnl The versions of ISL that work for Graphite - ISL_CHECK_VERSION(0,10) + ISL_CHECK_VERSION(0,11) if test "${gcc_cv_isl}" = no ; then - ISL_CHECK_VERSION(0,11) - if test "${gcc_cv_isl}" = no ; then - ISL_CHECK_VERSION(0,12) - fi + ISL_CHECK_VERSION(0,12) fi dnl Only execute fail-action, if ISL has been requested. ISL_IF_FAILED([ |