mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
Divert LCC compiler as a new one, instead of treating it as GNU. Since old times, Elbrus C/C++/Fortran Compiler (LCC) by MCST has been passing checks for GNU compilers, so it has been identified as GNU. Now, with intent of seriously upstreaming its support, it has been added as a separate LCC compiler, and its version displays not a supported GCC version, but LCC version itself (e.g. LCC 1.25.19 instead of GNU 7.3.0). This commit adds its support for detection, and also converts basically every check like 'is this compiler GNU?' to 'is this compiler GNU or LCC?'. The only places where this check is untouched, is where it regards other platforms where LCC is unavailable (primarily non-Linux), and where it REALLY differs from GNU compiler. Note: this transition may break software that are already ported to Elbrus, but hardly relies that LCC will be detected as GNU; still such software is not known.
30 lines
1.1 KiB
CMake
30 lines
1.1 KiB
CMake
include(Compiler/LCC)
|
|
__compiler_lcc(C)
|
|
|
|
|
|
if((NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER)
|
|
AND CMAKE_GENERATOR MATCHES "Makefiles|WMake"
|
|
AND CMAKE_DEPFILE_FLAGS_C)
|
|
# dependencies are computed by the compiler itself
|
|
set(CMAKE_C_DEPFILE_FORMAT gcc)
|
|
set(CMAKE_C_DEPENDS_USE_COMPILER TRUE)
|
|
endif()
|
|
|
|
set(CMAKE_C_COMPILE_OPTIONS_EXPLICIT_LANGUAGE -x c)
|
|
|
|
set(CMAKE_C90_STANDARD_COMPILE_OPTION "-std=c90")
|
|
set(CMAKE_C90_EXTENSION_COMPILE_OPTION "-std=gnu90")
|
|
set(CMAKE_C90_STANDARD__HAS_FULL_SUPPORT ON)
|
|
set(CMAKE_C99_STANDARD_COMPILE_OPTION "-std=c99")
|
|
set(CMAKE_C99_EXTENSION_COMPILE_OPTION "-std=gnu99")
|
|
set(CMAKE_C99_STANDARD__HAS_FULL_SUPPORT ON)
|
|
set(CMAKE_C11_STANDARD_COMPILE_OPTION "-std=c11")
|
|
set(CMAKE_C11_EXTENSION_COMPILE_OPTION "-std=gnu11")
|
|
set(CMAKE_C11_STANDARD__HAS_FULL_SUPPORT ON)
|
|
set(CMAKE_C17_STANDARD_COMPILE_OPTION "-std=c17")
|
|
set(CMAKE_C17_EXTENSION_COMPILE_OPTION "-std=gnu17")
|
|
set(CMAKE_C23_STANDARD_COMPILE_OPTION "-std=c2x")
|
|
set(CMAKE_C23_EXTENSION_COMPILE_OPTION "-std=gnu2x")
|
|
|
|
__compiler_check_default_language_standard(C 1.23 90 1.20 11 1.26 17)
|