From 7b54d386f2213f24949428a3365b2f42ae355cd8 Mon Sep 17 00:00:00 2001 From: JohnHolmesII Date: Sat, 22 Feb 2020 15:11:25 -0800 Subject: [PATCH] Set required Clang to 9 - 10 is not yet required and is not very available --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f155b185d..07dc442668 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,8 @@ if(CMAKE_COMPILER_IS_GNUCXX) message(FATAL_ERROR "RPCS3 requires at least gcc-9.") endif() elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang") - if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 10.0) - message(FATAL_ERROR "RPCS3 requires at least clang-10.0.") + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0) + message(FATAL_ERROR "RPCS3 requires at least clang-9.0.") endif() endif()