diff options
Diffstat (limited to 'Modules/Compiler/SunPro-C.cmake')
-rw-r--r-- | Modules/Compiler/SunPro-C.cmake | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Modules/Compiler/SunPro-C.cmake b/Modules/Compiler/SunPro-C.cmake index 29c2f22..ac88e6f 100644 --- a/Modules/Compiler/SunPro-C.cmake +++ b/Modules/Compiler/SunPro-C.cmake @@ -43,5 +43,20 @@ endif() __compiler_check_default_language_standard(C 5.11 90 5.14 11) +macro(cmake_record_c_compile_features) + set(_result 0) + if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 5.13) + if(_result EQUAL 0 AND CMAKE_C11_STANDARD_COMPILE_OPTION) + _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>") |