From 47dc3346007e81c3747abf13427f73a8252182c2 Mon Sep 17 00:00:00 2001 From: Ian <7848638+IanE9@users.noreply.github.com> Date: Mon, 1 Mar 2021 12:56:19 -0700 Subject: [PATCH] boost: use clang-win toolset when compiler=Visual Studio and compiler.toolset=ClangCL --- recipes/boost/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/boost/all/conanfile.py b/recipes/boost/all/conanfile.py index b9a6de5707bf2..176b1137b8d83 100644 --- a/recipes/boost/all/conanfile.py +++ b/recipes/boost/all/conanfile.py @@ -1052,7 +1052,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":