mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -06:00
55 lines
1.8 KiB
CMake
55 lines
1.8 KiB
CMake
include(Compiler/Intel)
|
|
__compiler_intel(C)
|
|
|
|
string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT " -DNDEBUG")
|
|
string(APPEND CMAKE_C_FLAGS_RELEASE_INIT " -DNDEBUG")
|
|
string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT " -DNDEBUG")
|
|
|
|
set(CMAKE_DEPFILE_FLAGS_C "-MD -MT <OBJECT> -MF <DEPFILE>")
|
|
|
|
if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC")
|
|
set(_std -Qstd)
|
|
set(_ext c)
|
|
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 16.0.0)
|
|
set(CMAKE_C11_STANDARD_COMPILE_OPTION "-Qstd=c11")
|
|
set(CMAKE_C11_EXTENSION_COMPILE_OPTION "-Qstd=c11")
|
|
endif()
|
|
else()
|
|
set(_std -std)
|
|
set(_ext gnu)
|
|
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 15.0.0)
|
|
set(CMAKE_C11_STANDARD_COMPILE_OPTION "-std=c11")
|
|
set(CMAKE_C11_EXTENSION_COMPILE_OPTION "-std=gnu11")
|
|
endif()
|
|
endif()
|
|
|
|
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 12.0)
|
|
set(CMAKE_C90_STANDARD_COMPILE_OPTION "${_std}=c89")
|
|
set(CMAKE_C90_EXTENSION_COMPILE_OPTION "${_std}=${_ext}89")
|
|
set(CMAKE_C99_STANDARD_COMPILE_OPTION "${_std}=c99")
|
|
set(CMAKE_C99_EXTENSION_COMPILE_OPTION "${_std}=${_ext}99")
|
|
endif()
|
|
|
|
unset(_std)
|
|
unset(_ext)
|
|
|
|
__compiler_check_default_language_standard(C 12.1 90 15.0.0 11)
|
|
|
|
macro(cmake_record_c_compile_features)
|
|
set(_result 0)
|
|
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 12.1)
|
|
if (_result EQUAL 0 AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 15.0.0)
|
|
_record_compiler_features_C(11)
|
|
endif()
|
|
if (_result EQUAL 0)
|
|
_record_compiler_features_C(99)
|
|
endif()
|
|
if (_result EQUAL 0)
|
|
_record_compiler_features_C(90)
|
|
endif()
|
|
endif()
|
|
endmacro()
|
|
|
|
set(CMAKE_C_CREATE_PREPROCESSED_SOURCE "<CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
|
|
set(CMAKE_C_CREATE_ASSEMBLY_SOURCE "<CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")
|