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:
parent
bc1564aadc
commit
0a90c25487
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue