From 6c2a8a087f77b0dd929a0ee38b74105f74ffcec8 Mon Sep 17 00:00:00 2001 From: Momtchil Momtchev Date: Wed, 3 Apr 2024 15:57:23 +0200 Subject: [PATCH] disable openmp on windows --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index eca763b4983..ed3a52ada69 100644 --- a/conanfile.py +++ b/conanfile.py @@ -142,7 +142,7 @@ def requirements(self): if self.options.simd and self.settings.arch != 'wasm': self.requires('highway/1.0.3') - if self.options.openmp and self.settings.arch != 'wasm': + if self.options.openmp and self.settings.arch != 'wasm' and self.settings.os != 'Windows': self.requires('llvm-openmp/12.0.1') if self.options.display and self.settings.arch != 'wasm':