From 7baad4b99656c7b9d992bd7626bda2e719412cff Mon Sep 17 00:00:00 2001 From: Francisco Jerez Date: Sat, 28 Sep 2013 17:26:50 -0700 Subject: [PATCH] clover: Require GCC 4.7 or higher to build. Tested-by: Tom Stellard --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 08344c5..addbf57 100644 --- a/configure.ac +++ b/configure.ac @@ -1337,8 +1337,8 @@ if test "x$enable_opencl" = xyes; then AC_MSG_ERROR([cannot enable OpenCL without Gallium]) fi - if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6; then - AC_MSG_ERROR([gcc >= 4.6 is required to build clover]) + if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 7; then + AC_MSG_ERROR([gcc >= 4.7 is required to build clover]) fi if test "x$have_libclc" = xno; then -- 2.7.4