Skip to content

Commit

Permalink
Disable build for apply-clang with libc++
Browse files Browse the repository at this point in the history
  • Loading branch information
klimkin committed Feb 7, 2021
1 parent 97fa103 commit b65111d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/libsafec/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ def _supported_compiler(self):
return False
if compiler == "gcc" and version < "5":
return False
if compiler == "apple-clang" and compiler.libcxx == "libc++":
return False
return True

def configure(self):
Expand Down

0 comments on commit b65111d

Please sign in to comment.