Skip to content

Commit

Permalink
openroad.bzl: Fix runfile mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
hovind committed Oct 16, 2024
1 parent 63d8746 commit 8269a48
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion openroad.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,11 @@ def _yosys_impl(ctx):
runfiles = ctx.runfiles(
[config_short, make] + outputs + canon_logs + synth_logs +
ctx.files.extra_configs,
transitive_files = deps_inputs(ctx),
transitive_files = depset(transitive = [
flow_inputs(ctx),
deps_inputs(ctx),
pdk_inputs(ctx),
]),
),
),
OutputGroupInfo(
Expand Down Expand Up @@ -844,6 +848,8 @@ def _make_impl(ctx, stage, steps, forwarded_names = [], result_names = [], objec
[config_short, make] +
forwards + results + logs + reports + ctx.files.extra_configs,
transitive_files = depset(transitive = [
flow_inputs(ctx),
ctx.attr.src[PdkInfo].files,
ctx.attr.src[OrfsInfo].additional_gds,
ctx.attr.src[OrfsInfo].additional_lefs,
ctx.attr.src[OrfsInfo].additional_libs,
Expand Down

0 comments on commit 8269a48

Please sign in to comment.