From 9f0fbf613159b9e9af12f4fb483366921cb9fd72 Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Tue, 7 May 2024 13:09:42 +0300 Subject: [PATCH] stella-cv-fbow: SIMD options are not available for MSVC --- recipes/stella-cv-fbow/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/stella-cv-fbow/all/conanfile.py b/recipes/stella-cv-fbow/all/conanfile.py index 0eab558ee517f..c879e96f13fcc 100644 --- a/recipes/stella-cv-fbow/all/conanfile.py +++ b/recipes/stella-cv-fbow/all/conanfile.py @@ -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