From 1d765b2829e118252aeb32136aa67dbde9c928a5 Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 31 Mar 2017 15:33:53 -0400 Subject: [PATCH] Update the minimum supported GCC version. --- cmake/setup_compiler_flags_gnu.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/setup_compiler_flags_gnu.cmake b/cmake/setup_compiler_flags_gnu.cmake index a00de57d93..59504616cc 100644 --- a/cmake/setup_compiler_flags_gnu.cmake +++ b/cmake/setup_compiler_flags_gnu.cmake @@ -21,10 +21,10 @@ # IF( CMAKE_CXX_COMPILER_ID MATCHES "GNU" AND - CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.4" ) + CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.8" ) MESSAGE(WARNING "\n" - "You're using an old version of the GNU Compiler Collection (gcc/g++)!\n" - "It is strongly recommended to use at least version 3.4.\n" + "deal.II requires support for features of C++11 that are not present in\n" + "versions of GCC prior to 4.8." ) ENDIF() -- 2.39.5