Skip to content

Commit 2531b9f

Browse files
re enable windows arm
1 parent e924b41 commit 2531b9f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

recipes/cyrus-sasl/all/conanfile.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,8 @@ def requirements(self):
105105
self.requires("krb5/1.21.2")
106106

107107
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")
108+
if is_msvc(self) and not self.options.shared:
109+
raise ConanInvalidConfiguration("Static library output is not supported when building with MSVC")
113110

114111
def build_requirements(self):
115112
if not is_msvc(self):

0 commit comments

Comments
 (0)