Skip to content

Commit

Permalink
orfs_sweep: added missing forwarding of sources argument
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Jan 18, 2025
1 parent 3528b80 commit f68af33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sweep.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def orfs_sweep(
arguments,
sweep,
verilog_files,
stage_sources,
stage_sources = {},
sources = {},
other_variants = {},
stage = "floorplan",
abstract_stage = "final",
Expand All @@ -36,6 +37,7 @@ def orfs_sweep(
stage_sources: dictionary with list of sources to use for the stage
abstract_stage: generate abstract from this stage
visibility: list of visibility labels
sources: forwarded to orfs_flow
"""
sweep_json = {
"name": name,
Expand Down Expand Up @@ -69,6 +71,7 @@ def orfs_sweep(
},
variant = variant,
verilog_files = verilog_files,
sources = sources,
abstract_stage = abstract_stage,
visibility = visibility,
)
Expand Down

0 comments on commit f68af33

Please sign in to comment.