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 e924b41 commit 2531b9fCopy full SHA for 2531b9f
recipes/cyrus-sasl/all/conanfile.py
@@ -105,11 +105,8 @@ def requirements(self):
105
self.requires("krb5/1.21.2")
106
107
def validate(self):
108
- if is_msvc(self):
109
- if not self.options.shared:
110
- raise ConanInvalidConfiguration("Static library output is not supported when building with MSVC")
111
- if self.settings.arch == "armv8":
112
- raise ConanInvalidConfiguration(f"{self.ref} cannot be built on windows ARM")
+ if is_msvc(self) and not self.options.shared:
+ raise ConanInvalidConfiguration("Static library output is not supported when building with MSVC")
113
114
def build_requirements(self):
115
if not is_msvc(self):
0 commit comments