Quellcode durchsuchen

HPCC-23759 Update g++ required version to 7.3.0 or greater

Signed-off-by: Michael Gardner <michael.gardner@lexisnexisrisk.com>
Michael Gardner vor 5 Jahren
Ursprung
Commit
d4087d7555
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      cmake_modules/commonSetup.cmake

+ 2 - 2
cmake_modules/commonSetup.cmake

@@ -727,8 +727,8 @@ IF ("${COMMONSETUP_DONE}" STREQUAL "")
       ENDIF()
 
       IF (CMAKE_COMPILER_IS_GNUCXX)
-        IF ("${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS "4.7.3")
-          MESSAGE(FATAL_ERROR "You need Gnu c++ version 4.7.3 or later to build this project (version ${CMAKE_CXX_COMPILER_VERSION} detected)")
+        IF ("${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS "7.3.0")
+          MESSAGE(FATAL_ERROR "You need Gnu c++ version 7.3.0 or later to build this project (version ${CMAKE_CXX_COMPILER_VERSION} detected)")
         ENDIF()
       ENDIF()
     ENDIF()