File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,11 @@ def requirements(self):
102102 self .requires ("sqlite3/3.44.2" )
103103
104104 def validate (self ):
105- if is_msvc (self ) and not self .options .shared :
106- raise ConanInvalidConfiguration ("Static library output is not supported when building with MSVC" )
105+ if is_msvc (self ):
106+ if not self .options .shared :
107+ raise ConanInvalidConfiguration ("Static library output is not supported when building with MSVC" )
108+ if self .settings .arch == "armv8" :
109+ raise ConanInvalidConfiguration (f"{ self .ref } cannot be built on windows ARM" )
107110 if self .options .with_gssapi :
108111 raise ConanInvalidConfiguration (
109112 f"{ self .name } :with_gssapi=True requires krb5 recipe, not yet available in conan-center" ,
You can’t perform that action at this time.
0 commit comments