-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: Use a C++20 compliant devtoolset on Linux #1521
Closed
Closed
Conversation
This file contains 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
GCC/stdlibc++ 12 is supporting all of C++20 language features and most C++20 library features. See: https://access.redhat.com/documentation/en-us/red_hat_developer_toolset/12/html-single/user_guide/index See: https://en.cppreference.com/w/cpp/compiler_support/20#C.2B.2B20_library_features Signed-off-by: Julien Jerphanion <[email protected]> Co-authored-by: Alex Seaton <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
See: https://almalinux.org/blog/2023-12-20-almalinux-8-key-update/ Signed-off-by: Julien Jerphanion <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
Signed-off-by: Julien Jerphanion <[email protected]>
``` 2024-04-25T07:45:36.9840649Z -- Running vcpkg install 2024-04-25T07:45:36.9860781Z warning: Embedding `vcpkg-configuration` in a manifest file is an EXPERIMENTAL feature. 2024-04-25T07:45:37.0397302Z A suitable version of cmake was not found (required v3.27.1) Downloading portable cmake 3.27.1... 2024-04-25T07:45:37.0398379Z Downloading cmake... 2024-04-25T07:45:37.0400198Z https://github.com/Kitware/CMake/releases/download/v3.27.1/cmake-3.27.1-linux-x86_64.tar.gz->/project/cpp/vcpkg/downloads/cmake-3.27.1-linux-x86_64.tar.gz 2024-04-25T07:45:37.7742343Z Extracting cmake... 2024-04-25T07:45:39.9299697Z Detecting compiler hash for triplet x64-linux... 2024-04-25T07:45:40.1154987Z error: while detecting compiler information: 2024-04-25T07:45:40.1156196Z The log file content at "/project/cpp/vcpkg/buildtrees/detect_compiler/stdout-x64-linux.log" is: 2024-04-25T07:45:40.1157864Z -- Found ninja('1.8.2') but at least version 1.10.2 is required! Trying to use internal version if possible! 2024-04-25T07:45:40.1160826Z -- Downloading https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-linux.zip -> ninja-linux-1.10.2.zip... 2024-04-25T07:45:40.1162166Z -- Configuring x64-linux-rel ``` Signed-off-by: Julien Jerphanion <[email protected]>
Closing as out of the scope due to #1542. |
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.
Reference Issues/PRs
What does this implement or fix?
GCC/stdlibc++ 12 is supporting all of C++20 language features and most C++20 library features.
See: https://access.redhat.com/documentation/en-us/red_hat_developer_toolset/12/html-single/user_guide/index
See: https://en.cppreference.com/w/cpp/compiler_support/20#C.2B.2B20_library_features
Any other comments?
Checklist
Checklist for code changes...