From 15d65523b646f988c74000edd0dcb30585c85854 Mon Sep 17 00:00:00 2001 From: "Kevin A. Mitchell" Date: Wed, 23 Dec 2020 11:47:19 -0600 Subject: [PATCH] boost: Allow apple-clang version 10 for nowide and C++ 11 - Tested with apple-clang 10.0, which is equivalent to clang 4.2. - Boost config reports that std::fstream is swappable and movable. --- recipes/boost/all/conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/boost/all/conanfile.py b/recipes/boost/all/conanfile.py index 883c39952252b..84aa4b25cf817 100644 --- a/recipes/boost/all/conanfile.py +++ b/recipes/boost/all/conanfile.py @@ -137,7 +137,7 @@ def _min_compiler_version_default_cxx11(self): return { "gcc": 6, "clang": 6, - "apple-clang": 12, # guess + "apple-clang": 10, "Visual Studio": 14, # guess }.get(str(self.settings.compiler)) @@ -147,7 +147,7 @@ def _min_compiler_version_nowide(self): return { "gcc": 5, "clang": 5, - "apple-clang": 12, # guess + "apple-clang": 10, "Visual Studio": 14, # guess }.get(str(self.settings.compiler))