Skip to content

Commit

Permalink
(#4749) boost: use clang-win toolset when compiler=Visual Studio and …
Browse files Browse the repository at this point in the history
…compiler.toolset=ClangCL
  • Loading branch information
IanE9 authored Feb 24, 2022
1 parent 83df5cb commit 1bda7cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ def _toolset_version(self):
@property
def _toolset(self):
if self._is_msvc:
return "msvc"
return "clang-win" if self.settings.compiler.toolset == "ClangCL" else "msvc"
elif self.settings.os == "Windows" and self.settings.compiler == "clang":
return "clang-win"
elif self.settings.os == "Emscripten" and self.settings.compiler == "clang":
Expand Down

0 comments on commit 1bda7cd

Please sign in to comment.