Skip to content

Commit

Permalink
fix libcxx and cppstd
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton authored May 9, 2023
1 parent 40858c4 commit bc00fbf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions recipes/dnet/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,14 @@ def config_options(self):

def configure(self):
self.options.rm_safe("fPIC")
del self.settings.compiler.libcxx
del self.settings.compiler.cppstd
try:
del self.settings.compiler.libcxx
except Exception:
pass
try:
del self.settings.compiler.cppstd
except Exception:
pass

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down

0 comments on commit bc00fbf

Please sign in to comment.