Skip to content

Commit

Permalink
Allow parallel build processes
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Dec 27, 2024
1 parent ac1b577 commit c452860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edalize/flows/edaflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def _run_tool(self, cmd, args=[], cwd=None, quiet=False, env={}):

def build(self):
# FIXME: Get run command (e.g. make, ninja, cloud thingie..) from self.commands
self._run_tool("make", cwd=self.work_root)
self._run_tool("make", args=["-j"], cwd=self.work_root)

# Most flows won't have a run phase
def run(self, args=None):
Expand Down

0 comments on commit c452860

Please sign in to comment.