Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Dec 6, 2024
1 parent 839856c commit 68fe7b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions edalize/tools/vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,20 +110,19 @@ def setup(self, edam):
self.workdirs = []
for lib, files in libs.items():
cmds = {}
depfiles = []
has_vlog = False
# Group into individual commands
for (cmd, fname, defines) in files:
if not (cmd, defines) in cmds:
cmds[(cmd, defines)] = []
cmds[(cmd, defines)].append(fname)
depfiles.append(fname)
if cmd == "vlogan":
has_vlog = True
commands = [["mkdir", "-p", lib]]
i = 0
f_files = {}
for (cmd, defines), fnames in cmds.items():
depfiles = fnames.copy()
options = []
if cmd == "vlogan":
if has_sv:
Expand Down

0 comments on commit 68fe7b3

Please sign in to comment.