]> git.lyx.org Git - lyx.git/commitdiff
Require at least gcc 4.3
authorGeorg Baum <baum@lyx.org>
Sun, 5 Jun 2016 13:40:00 +0000 (15:40 +0200)
committerGeorg Baum <baum@lyx.org>
Sun, 5 Jun 2016 13:40:00 +0000 (15:40 +0200)
This is a prerequisite for mandatory C++11 support.
I could not find a cmake gcc version check btw.

INSTALL
config/lyxinclude.m4

diff --git a/INSTALL b/INSTALL
index 2ddcd8d055264f7685dbfe65d57025260feb5816..f53361d954d2fbc0e5a328c59b44b0da8bb95c02 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -49,7 +49,7 @@ Requirements
 
 First of all, you will need a recent C++ compiler, where recent means
 that the compilers are close to C++ standard conforming like gcc (at
-least 4.x) or clang. Note that the compiler will be used in C++11 mode
+least 4.3) or clang. Note that the compiler will be used in C++11 mode
 when possible.
 
 LyX makes great use of the C++ Standard Template Library (STL).
index 1f1fdb67e78ab187f73f86c49f3432e67e8a533b..9ba8a871bc5b949a31d2a88e73b71f5be866393e 100644 (file)
@@ -194,7 +194,7 @@ AC_DEFUN([LYX_CXX_USE_REGEX],
        dnl <regex> in gcc is unusable in versions less than 4.9.0
        dnl see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53631
        case $gxx_version in
-         4.0*|4.1*|4.2*|4.3*|4.4*|4.5*|4.6*|4.7*|4.8*) lyx_std_regex=no ;;
+         4.3*|4.4*|4.5*|4.6*|4.7*|4.8*) lyx_std_regex=no ;;
          *) ;;
        esac
      fi
@@ -344,7 +344,8 @@ if test x$GXX = xyes; then
       AM_CPPFLAGS="$AM_CPPFLAGS -Wall -Wextra"
   fi
   case $gxx_version in
-      2.*|3.*) AC_ERROR([gcc 4.x is required]);;
+      2.*|3.*) AC_ERROR([gcc >= 4.3 is required]);;
+      4.0*|4.1*|4.2*) AC_ERROR([gcc >= 4.3 is required]);;
   esac
   if test x$enable_stdlib_debug = xyes ; then
     dnl FIXME: for clang/libc++, one should define _LIBCPP_DEBUG2=0
@@ -361,10 +362,6 @@ if test x$GXX = xyes; then
   dnl By default, it is auto and we enable C++11 when possible
   if test x$enable_cxx11 != xno ; then
     case $gxx_version in
-      4.0*|4.1*|4.2*)
-         if test x$enable_cxx11 = xyes; then
-            AC_ERROR([There is no C++11 support in gcc 4.2 or older])
-         fi;;
       4.3*|4.4*|4.5*|4.6*)
         dnl Note that this will define __GXX_EXPERIMENTAL_CXX0X__.
         dnl The source code relies on that.