https://github.com/Kitware/CMake
Revision 72efd95add332161471c69a2f688f1ac459e4065 authored by Robert Maynard on 24 February 2021, 18:06:26 UTC, committed by Robert Maynard on 24 February 2021, 18:47:03 UTC
The PGI ( and NVIDIA HPC ) compilers default C++ standard level
are based on the GCC system headers it is compiling against.

Therefore on newer platforms the default C++ level will be >= 11
and requesting C++98 compilation mode will fail as no explicit
flag will be set.
1 parent 6bfb2c6
Raw File
Tip revision: 72efd95add332161471c69a2f688f1ac459e4065 authored by Robert Maynard on 24 February 2021, 18:06:26 UTC
PGI: Explicitly specify CMAKE_CXX98_STANDARD_COMPILE_OPTION
Tip revision: 72efd95
DartConfig.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.

set(CTEST_PROJECT_NAME "CMake")
set(CTEST_NIGHTLY_START_TIME "21:00:00 EDT")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "open.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=CMake")
set(CTEST_DROP_SITE_CDASH TRUE)
back to top