summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/Cray-CXX.cmake
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2019-03-06 17:28:00 (GMT)
committerBrad King <brad.king@kitware.com>2019-04-09 12:44:56 (GMT)
commitb0f46c48f6e3efc0481d7c573f67cc76dfa5b2fd (patch)
tree2ea29adef53d0b0471e8a885a378cf6d47ceae2e /Modules/Compiler/Cray-CXX.cmake
parent646fb1a646a3b860e983f3d030dfd223c761d49f (diff)
downloadCMake-b0f46c48f6e3efc0481d7c573f67cc76dfa5b2fd.zip
CMake-b0f46c48f6e3efc0481d7c573f67cc76dfa5b2fd.tar.gz
CMake-b0f46c48f6e3efc0481d7c573f67cc76dfa5b2fd.tar.bz2
CompileFeatures: Now able to presume full language level support
Previously compilers that only supported the meta-level flags would not have any of the granular features listed. Now we presume that they have full support and enable all the features. Update granular feature tests to skip the actual compilation checks for the presumed features.
Diffstat (limited to 'Modules/Compiler/Cray-CXX.cmake')
-rw-r--r--Modules/Compiler/Cray-CXX.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Compiler/Cray-CXX.cmake b/Modules/Compiler/Cray-CXX.cmake
index 85a3167..38c8b1e 100644
--- a/Modules/Compiler/Cray-CXX.cmake
+++ b/Modules/Compiler/Cray-CXX.cmake
@@ -10,13 +10,16 @@ string(APPEND CMAKE_CXX_FLAGS_RELEASE_INIT " -DNDEBUG")
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 8.1)
set(CMAKE_CXX98_STANDARD_COMPILE_OPTION -h conform)
set(CMAKE_CXX98_EXTENSION_COMPILE_OPTION -h gnu)
+ set(CMAKE_CXX98_STANDARD__HAS_FULL_SUPPORT ON)
if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.4)
set(CMAKE_CXX11_STANDARD_COMPILE_OPTION -h std=c++11)
set(CMAKE_CXX11_EXTENSION_COMPILE_OPTION -h std=c++11,gnu)
+ set(CMAKE_CXX11_STANDARD__HAS_FULL_SUPPORT ON)
endif()
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.6)
set(CMAKE_CXX14_STANDARD_COMPILE_OPTION -h std=c++14)
set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION -h std=c++14,gnu)
+ set(CMAKE_CXX14_STANDARD__HAS_FULL_SUPPORT ON)
endif ()
endif ()