We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Just like is_msvc, usually, in CCI, we need to use the follow idiom to check when running clang-cl:
is_msvc
@property def _is_clang_cl(self) return (self.settings.os == "Windows" and self.settings.compiler == "clang") or \ self.settings.get_safe("compiler.toolset") == "ClangCL"
It would be great internalizing it as part of conan.tools.microsoft so we no longer need to copy/past that method.
conan.tools.microsoft
You can find its usage by the follow search: https://github.com/conan-io/conan-center-index/search?q=_is_clang_cl
The text was updated successfully, but these errors were encountered:
conan-io#12175 Is Clang compiler on Windows
2174ac3
Signed-off-by: Uilian Ries <uilianries@gmail.com>
The feature will not be merged.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Just like
is_msvc
, usually, in CCI, we need to use the follow idiom to check when running clang-cl:It would be great internalizing it as part of
conan.tools.microsoft
so we no longer need to copy/past that method.You can find its usage by the follow search: https://github.com/conan-io/conan-center-index/search?q=_is_clang_cl
The text was updated successfully, but these errors were encountered: