Skip to content

Commit

Permalink
libigl: fix parallel build not being disabled in v1
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jan 18, 2024
1 parent a210b0d commit e2e70b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/libigl/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ def build(self):
cmake.build()
except ConanException:
# Workaround for C3I running out of memory during build
cmake.build(cli_args=["-j1"])
self.conf.define("tools.build:jobs", 1)
cmake.build()

def package(self):
cmake = CMake(self)
Expand Down

0 comments on commit e2e70b5

Please sign in to comment.