Skip to content

Commit a22fdae

Browse files
authored
Merge pull request #34 from howetuft/llvm-openmp
Reintroduce llvm-openmp in macOS
2 parents d60dcd8 + 5e4bbc9 commit a22fdae

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

conanfile.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
IMGUIFILEDIALOG_VERSION = "0.6.7"
2323
LIBDEFLATE_VERSION = "1.25"
2424
LIBTIFF_VERSION = "4.7.1"
25+
LLVM_OPENMP_VERSION = "20.1.6"
2526
MINIZIP_VERSION = "4.0.7"
2627
NINJA_VERSION = "1.13.2"
2728
NLOHMANN_JSON_VERSION = "3.12.0"
@@ -133,6 +134,13 @@ def requirements(self):
133134
# As they are build requirements for LuxCore, they must be full
134135
# requirements for LuxCoreDeps (otherwise they won't get saved in cache)
135136

137+
if self.settings.os == "Macos":
138+
self.requires(
139+
f"llvm-openmp/{LLVM_OPENMP_VERSION}",
140+
force=True,
141+
)
142+
143+
136144
# Bison/flex (Luxcore build requirement)
137145
if self.settings.os == "Windows":
138146
self.requires("winflexbison/[*]", build=False, run=True, visible=True)

0 commit comments

Comments
 (0)