Skip to content

Commit

Permalink
Re-activate jobs flag, so nr of CPUs can be tuned back (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanv authored Jul 16, 2024
2 parents 7907800 + 69a0ffb commit fd958a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spin/cmds/meson.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,9 @@ def build(
# Any other conditions that warrant a reconfigure?

compile_flags = ["-v"] if verbose else []
if jobs:
compile_flags += ["-j", str(jobs)]

p = _run(
_meson_cli() + ["compile"] + compile_flags + ["-C", build_dir],
sys_exit=True,
Expand Down

0 comments on commit fd958a9

Please sign in to comment.