Skip to content

Commit

Permalink
stella-cv-fbow: SIMD options are not available for MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed May 7, 2024
1 parent 15f1e44 commit 9f0fbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/stella-cv-fbow/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def export_sources(self):
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
if self.settings.arch not in ["x86", "x86_64"]:
if self.settings.arch not in ["x86", "x86_64"] or self.settings.compiler not in ["gcc", "clang", "apple-clang"]:
del self.options.avx
del self.options.mmx
del self.options.sse
Expand Down

0 comments on commit 9f0fbf6

Please sign in to comment.