Skip to content

Commit

Permalink
boost: Allow apple-clang version 10 for nowide and C++ 11
Browse files Browse the repository at this point in the history
- Tested with apple-clang 10.0, which is equivalent to clang 4.2.

- Boost config reports that std::fstream is swappable and movable.
  • Loading branch information
datalogics-kam committed Dec 23, 2020
1 parent 165420d commit 15d6552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand All @@ -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))

Expand Down

0 comments on commit 15d6552

Please sign in to comment.