diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2019-03-25 19:07:07 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2019-03-27 19:45:11 (GMT) |
commit | 983533a4b8cc3abbeaf11c1cadad4e14dccc5824 (patch) | |
tree | 4602652395eee15ab0e9cdee8d7f5f4802ca3dcb /Modules/Compiler/Cray-C.cmake | |
parent | f92ccbc306c20554af35709faf00f402a6c34978 (diff) | |
download | CMake-983533a4b8cc3abbeaf11c1cadad4e14dccc5824.zip CMake-983533a4b8cc3abbeaf11c1cadad4e14dccc5824.tar.gz CMake-983533a4b8cc3abbeaf11c1cadad4e14dccc5824.tar.bz2 |
Record when C compilers have gained full support for 90,99,11
Diffstat (limited to 'Modules/Compiler/Cray-C.cmake')
-rw-r--r-- | Modules/Compiler/Cray-C.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Compiler/Cray-C.cmake b/Modules/Compiler/Cray-C.cmake index d34154c..9340948 100644 --- a/Modules/Compiler/Cray-C.cmake +++ b/Modules/Compiler/Cray-C.cmake @@ -10,11 +10,14 @@ string(APPEND CMAKE_C_FLAGS_RELEASE_INIT " -DNDEBUG") if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 8.1) set(CMAKE_C90_STANDARD_COMPILE_OPTION -h noc99,conform) set(CMAKE_C90_EXTENSION_COMPILE_OPTION -h noc99,gnu) + set(CMAKE_C90_STANDARD__HAS_FULL_SUPPORT ON) set(CMAKE_C99_STANDARD_COMPILE_OPTION -h c99,conform) set(CMAKE_C99_EXTENSION_COMPILE_OPTION -h c99,gnu) + set(CMAKE_C99_STANDARD__HAS_FULL_SUPPORT ON) if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 8.5) set(CMAKE_C11_STANDARD_COMPILE_OPTION -h std=c11,conform) set(CMAKE_C11_EXTENSION_COMPILE_OPTION -h std=c11,gnu) + set(CMAKE_C11_STANDARD__HAS_FULL_SUPPORT ON) endif () endif () |