mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Set required Clang to 9
- 10 is not yet required and is not very available
This commit is contained in:
parent
7eccbecb2f
commit
7b54d386f2
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue