CMake: Remove old gcc version check

We require newer than gcc 12 at this point, so this check is no longer
needed.
This commit is contained in:
Andrew Kaster 2025-05-19 09:52:02 -06:00 committed by Tim Flynn
parent 6e45d8ba6c
commit 52efd90445

View File

@ -12,12 +12,6 @@ project(
LANGUAGES C CXX
)
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "12")
message(FATAL_ERROR
"A GCC version less than 12 was detected (${CMAKE_CXX_COMPILER_VERSION}), this is unsupported.\n"
"Please re-read the build instructions documentation, and upgrade your host compiler.\n")
endif()
if (${ENABLE_LAGOM_LADYBIRD} OR $CACHE{ENABLE_LAGOM_LADYBIRD})
message(FATAL_ERROR
"The ENABLE_LAGOM_LADYBIRD option is no longer supported.\n"