remove explicit version from conan profile - use system#520
Merged
SavenkovIgor merged 7 commits intomainfrom Mar 15, 2026
Merged
remove explicit version from conan profile - use system#520SavenkovIgor merged 7 commits intomainfrom
SavenkovIgor merged 7 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Conan base Clang profile to stop referencing version-suffixed compiler executables, intending to rely on the system-default clang/clang++ instead.
Changes:
- Switch
CCfromclang-20toclang. - Switch
CXXfromclang++-20toclang++.
Comments suppressed due to low confidence (1)
conanfiles/profile/base/clang:7
CC/CXXwere changed toclang/clang++, but this profile still pinscompiler.version=20. Unless the environment guarantees thatclangresolves to Clang 20 (e.g., via PATH/update-alternatives), Conan will believe it is building with Clang 20 while actually invoking a different version, which can break builds and/or produce incorrect package IDs. Either keepclang-20/clang++-20, or remove/align the pinned compiler version and ensure CI/dev environments set the intended default compiler.
CXX=clang++
[settings]
compiler=clang
compiler.version=20
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.
No description provided.