Set the minimal clang version to 14.0.1 because 14.0.0 breaks a std::span constructor (which worked in 14.0.0-rc1)

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-04-03 11:45:54 +02:00
parent bc1564aadc
commit 0a90c25487
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ endif()
set(CMAKE_CXX_FLAGS "-Wall")
set(CMAKE_CXX_FLAGS_RELEASE "-Os")
set(MINIMAL_GNU "11.0")
set(MINIMAL_CLANG "14.0")
set(MINIMAL_CLANG "14.0.1")
set(MINIMAL_MSVC "19.30")
set(IS_GNU (${CMAKE_CXX_COMPILER_ID} STREQUAL GNU))
set(IS_CLANG (${CMAKE_CXX_COMPILER_ID} STREQUAL Clang))

View File

@ -27,7 +27,7 @@ CMake 3.18 or higher is needed.
### Linux target
- GCC 11+ or Clang 14+ with llvm-gold
- GCC 11+ or Clang 14.0.1+ with llvm-gold
### Windows target