We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60ff0b0 commit 33457f1Copy full SHA for 33457f1
recipes/llama-cpp/all/conanfile.py
@@ -65,6 +65,9 @@ def export_sources(self):
65
def validate(self):
66
check_min_cppstd(self, 17 if self._is_new_llama else 11)
67
68
+ if Version(self.version) >= "b6529" and self.settings.os == "Macos" and Version(self.settings.os.version) < 13:
69
+ raise ConanInvalidConfiguration(f"{self.ref} requires OSX >=13.")
70
+
71
def validate_build(self):
72
if self._is_new_llama and self.settings.compiler == "msvc" and "arm" in self.settings.arch:
73
raise ConanInvalidConfiguration("llama-cpp does not support ARM architecture on msvc, it recommends to use clang instead")
0 commit comments