Skip to content

Commit

Permalink
allow macos build as per oneapi-src/oneTBB#1132
Browse files Browse the repository at this point in the history
  • Loading branch information
MALASHKIN Andrei committed Oct 28, 2023
1 parent 00cd82f commit 7102c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/onetbb/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def _tbbbind_hwloc_version(self):

@property
def _tbbbind_supported(self):
return Version(self.version) >= "2021.1.1" and not self.settings.os == "Macos"
return Version(self.version) >= "2021.1.1" and Version(self.version) < "2021.11.0" and not self.settings.os == "Macos"

@property
def _tbbbind_build(self):
Expand Down

0 comments on commit 7102c7a

Please sign in to comment.