Skip to content

Commit

Permalink
disable openmp on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mmomtchev committed Apr 3, 2024
1 parent b3a83de commit 6c2a8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down

0 comments on commit 6c2a8a0

Please # to comment.