From aed5906544ae0a08da803976d329d76ffd8ba5ca Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Thu, 21 Nov 2024 12:17:01 -0700 Subject: [PATCH] CMake: Windows: Update MSVC 17.6 Blacklist message Given 17.7 has been out for quite while, it doesn't make a whole lot of sense to still tell people to downgrade their compiler. --- build_files/cmake/platform/platform_win32.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/cmake/platform/platform_win32.cmake b/build_files/cmake/platform/platform_win32.cmake index 7170ab77641..693f0df9625 100644 --- a/build_files/cmake/platform/platform_win32.cmake +++ b/build_files/cmake/platform/platform_win32.cmake @@ -53,7 +53,7 @@ else() endif() if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 19.36.32532 AND # MSVC 2022 17.6.0 has a bad codegen CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.37.32705) # But it is fixed in 2022 17.7 preview 1 - message(FATAL_ERROR "Compiler is unsupported, MSVC 2022 17.6.x has codegen issues and cannot be used to build blender. Please use MSVC 17.5 for the time being.") + message(FATAL_ERROR "Compiler is unsupported, MSVC 2022 17.6.x has codegen issues and cannot be used to build blender. Please upgrade 17.7 or newer.") endif() endif() endif()