docs: update supported compiler versions to match the C++17 requirement - #1404
Open
DiamonDinoia wants to merge 1 commit into
Open
docs: update supported compiler versions to match the C++17 requirement#1404DiamonDinoia wants to merge 1 commit into
DiamonDinoia wants to merge 1 commit into
Conversation
The listed versions (MSVC 2015 update 2, g++ 4.9, clang 4.0/3.7) predate C++17 and cannot compile the library. Minimum versions with full C++17 language support per the official compiler documentation: - GCC 7 (gcc.gnu.org/projects/cxx-status.html) - Clang 5 (clang.llvm.org/cxx_status.html) - VS 2017 version 15.7 (Microsoft C++ conformance table; VS2017 releases are named 'version 15.x', not 'update N') Assisted-by: Claude <noreply@anthropic.com>
|
I propose to reference those we have in the CI: |
Contributor
Author
|
I have no problem with that. I personally dislike maintaining very old compilers but I leave htis decisions to you all. |
Member
|
It's indeed complicated to maintain compilers that we don't test in the CI, so I agree with Alexis, let's require those from the CI as minimal versions |
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The listed versions (MSVC 2015 update 2, g++ 4.9, clang 4.0/3.7) predate C++17 and cannot compile the library. Minimum versions with full C++17 language support per the official compiler documentation.