diff options
author | Raul Tambre <raul@tambre.ee> | 2020-12-04 15:46:07 (GMT) |
---|---|---|
committer | Raul Tambre <raul@tambre.ee> | 2020-12-08 16:43:59 (GMT) |
commit | 9f3c70a333f076aca61affff189232edaba89c38 (patch) | |
tree | 3a484b6802c039c2ec1922f95c5dee50d8fccd65 /Modules/CMakeCUDACompilerId.cu.in | |
parent | af7e1545c8219c6eebaff6272955e8cd99d175a5 (diff) | |
download | CMake-9f3c70a333f076aca61affff189232edaba89c38.zip CMake-9f3c70a333f076aca61affff189232edaba89c38.tar.gz CMake-9f3c70a333f076aca61affff189232edaba89c38.tar.bz2 |
CUDA, CXX, OBJCXX: C++23 support with Clang 12
Clang 12 landed initial support for C++23 language mode flag -std={c|gnu}++2b
in commit 6627a3c2873fdf7ccba1a1573371079be48b36e8.
Diffstat (limited to 'Modules/CMakeCUDACompilerId.cu.in')
-rw-r--r-- | Modules/CMakeCUDACompilerId.cu.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/CMakeCUDACompilerId.cu.in b/Modules/CMakeCUDACompilerId.cu.in index 2055de2..91039e5 100644 --- a/Modules/CMakeCUDACompilerId.cu.in +++ b/Modules/CMakeCUDACompilerId.cu.in @@ -17,7 +17,9 @@ char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; @CMAKE_CUDA_COMPILER_ID_ERROR_FOR_TEST@ const char* info_language_dialect_default = "INFO" ":" "dialect_default[" -#if __cplusplus > 201703L +#if __cplusplus > 202002L + "23" +#elif __cplusplus > 201703L "20" #elif __cplusplus >= 201703L "17" |