[Bf-blender-cvs] [dc8355cfe22] master: Correct GCC version in message

Campbell Barton noreply at git.blender.org
Sat Dec 17 03:56:27 CET 2022


Commit: dc8355cfe2207c4aa47a7e463c176fa38a055726
Author: Campbell Barton
Date:   Sat Dec 17 13:56:01 2022 +1100
Branches: master
https://developer.blender.org/rBdc8355cfe2207c4aa47a7e463c176fa38a055726

Correct GCC version in message

Missed last commit.

===================================================================

M	CMakeLists.txt

===================================================================

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 428207f0231..a6683ce40b1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -118,7 +118,7 @@ enable_testing()
 
 if(CMAKE_COMPILER_IS_GNUCC)
   if("${CMAKE_C_COMPILER_VERSION}" VERSION_LESS "11.0.0")
-    message(FATAL_ERROR "The minimum supported version of GCC is 9.3.1")
+    message(FATAL_ERROR "The minimum supported version of GCC is 11.0.0")
   endif()
 elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
   if(CMAKE_COMPILER_IS_GNUCC AND ("${CMAKE_C_COMPILER_VERSION}" VERSION_LESS "8.0"))



More information about the Bf-blender-cvs mailing list