summaryrefslogtreecommitdiff
path: root/Modules/CMakeCUDACompilerId.cu.in
diff options
context:
space:
mode:
authorRaul Tambre <raul@tambre.ee>2020-12-04 17:46:07 +0200
committerRaul Tambre <raul@tambre.ee>2020-12-08 18:43:59 +0200
commit9f3c70a333f076aca61affff189232edaba89c38 (patch)
tree3a484b6802c039c2ec1922f95c5dee50d8fccd65 /Modules/CMakeCUDACompilerId.cu.in
parentaf7e1545c8219c6eebaff6272955e8cd99d175a5 (diff)
downloadcmake-9f3c70a333f076aca61affff189232edaba89c38.tar.gz
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.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/CMakeCUDACompilerId.cu.in b/Modules/CMakeCUDACompilerId.cu.in
index 2055de2181..91039e5ae9 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"