Skip to content

Commit

Permalink
improved clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
sifferman committed Sep 2, 2023
1 parent bf0517a commit 2e30ad1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edalize/verilator.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,11 @@ def build_main(self):
if self.tool_options["mode"] in ["binary", "dpi-hdr-only", "lint-only", "preprocess-only", "xml-only"]:
args.append(self.tool_options["mode"])

# Build according to mode
# Build mode
if self.tool_options["mode"] != "none":
self._run_tool("make", args, quiet=True)

# Builds runs
# Additional builds
if str(self.tool_options.get("gen-xml")).lower() == "true":
self._run_tool("make", ["xml-only"], quiet=True)
if str(self.tool_options.get("gen-dpi-hdr")).lower() == "true":
Expand Down

0 comments on commit 2e30ad1

Please sign in to comment.