We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ebd1da commit 6a06843Copy full SHA for 6a06843
conanfile.py
@@ -46,7 +46,6 @@ class MilvusLiteConan(ConanFile):
46
"gtest:build_gmock": False,
47
"onetbb:tbbmalloc": False,
48
"onetbb:tbbproxy": False,
49
- "onetbb:tbbbind": False,
50
"boost:without_locale": True,
51
"boost:without_test": True,
52
"boost:without_stacktrace": True,
@@ -74,6 +73,10 @@ def configure(self):
74
73
if self.settings.compiler.libcxx == "libstdc++":
75
raise Exception("This package is only compatible with libstdc++11")
76
+ def config_options(self):
77
+ if self.settings.os != "Macos":
78
+ self.options["onetbb"].tbbbind = False
79
+
80
def requirements(self):
81
if self.settings.os not in ["Macos", "Android"]:
82
self.requires("libunwind/1.7.2")
0 commit comments