Skip to content

Commit

Permalink
Merge pull request #228 from mithro/toolchain-tabs
Browse files Browse the repository at this point in the history
Tabs in `bzl` files fix.
  • Loading branch information
mithro authored Nov 20, 2023
2 parents 214188b + c9a40bf commit e0850ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions flows/flows.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ def _run_step_with_inputs(ctx, step, inputs_dict, outputs_step_dict):
mnemonic = step[FlowStepInfo].executable_type,
env = dicts.add(constants_env, inputs_env, outputs_env),
input_manifests = input_manifests,
toolchain = None,
)

return dicts.add(inputs_dict, outputs_dict)
Expand Down
2 changes: 1 addition & 1 deletion place_and_route/open_road.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def openroad_command(ctx, commands, input_db = None, step_name = None, inputs =
},
execution_requirements = execution_requirements,
mnemonic = "OpenROAD",
toolchain = None,
toolchain = None,
)

return struct(db = output_db, log_file = log_file)
2 changes: 1 addition & 1 deletion static_timing/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _run_opensta_impl(ctx):
input_manifests = input_manifests,
env = env,
mnemonic = "RunningSTA",
toolchain = None,
toolchain = None,
)

return [
Expand Down
2 changes: 1 addition & 1 deletion synthesis/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _synthesize_design_impl(ctx):
input_manifests = input_manifests,
env = env,
mnemonic = "SynthesizingRTL",
toolchain = None,
toolchain = None,
)

return [
Expand Down

0 comments on commit e0850ad

Please sign in to comment.