aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/c
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2023-06-22 14:29:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2023-06-22 14:29:18 +0200
commitf705277ae8bfcd42317d6a82fb9cd824ba12054f (patch)
tree9c3ec3d4116bcd7b1f0ec85acd06f815ce43c357 /libbuild2/c
parent7879d172dec3300341d3eff15808425e01c15569 (diff)
Map cxx.std=26 to -std=c++2c for GCC and Clang
Diffstat (limited to 'libbuild2/c')
-rw-r--r--libbuild2/c/init.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/libbuild2/c/init.cxx b/libbuild2/c/init.cxx
index 222a4fe..42ade68 100644
--- a/libbuild2/c/init.cxx
+++ b/libbuild2/c/init.cxx
@@ -78,7 +78,12 @@ namespace build2
// C17/18 is a bug-fix version of C11 so here we assume it is the
// same as C11.
//
- // And it's still early days for C2X.
+ // And it's still early days for C2X. Specifically, there is not
+ // much about C2X in MSVC in the official places and the following
+ // page shows that it's pretty much unimplement at the time of the
+ // MSVC 17.6 release:
+ //
+ // https://en.cppreference.com/w/c/compiler_support/23
//
// From version 16.8 VC now supports /std:c11 and /std:c17 options
// which enable C11/17 conformance. However, as of version 16.10,