Changes between Version 1 and Version 2 of Ticket #70170, comment 13
- Timestamp:
- Oct 12, 2024, 9:13:15 PM (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #70170, comment 13
v1 v2 4 4 For what it’s worth, ctpv is a pure C-based project, but `__VA_OPT__` happens to be a C++20 feature as well as a C23 one. This is why `compiler.cxx_standard 2020` is valid despite the source code not having any C++. It still achieves the desired end result of ensuring only compilers that support `__VA_OPT__` are used. 5 5 6 It appears that MacPorts currently does not recognize `compiler.c_standard 2023` yet because C23 is still very recent, so using that in the Portfile will make it fall back to `compiler.c_standard 2017` instead, if I am not mistaken. Otherwise, we would ideally use that in the Portfile instead 6 It appears that MacPorts currently does not recognize `compiler.c_standard 2023` yet because C23 is still very recent, so using that in the Portfile will make it fall back to `compiler.c_standard 2017` instead, if I am not mistaken. Otherwise, we would ideally use that in the Portfile instead.