Skip to content

Commit e0850ad

Browse files
author
Tim 'mithro' Ansell
authored
Merge pull request #228 from mithro/toolchain-tabs
Tabs in `bzl` files fix.
2 parents 214188b + c9a40bf commit e0850ad

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

flows/flows.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ def _run_step_with_inputs(ctx, step, inputs_dict, outputs_step_dict):
213213
mnemonic = step[FlowStepInfo].executable_type,
214214
env = dicts.add(constants_env, inputs_env, outputs_env),
215215
input_manifests = input_manifests,
216+
toolchain = None,
216217
)
217218

218219
return dicts.add(inputs_dict, outputs_dict)

place_and_route/open_road.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def openroad_command(ctx, commands, input_db = None, step_name = None, inputs =
259259
},
260260
execution_requirements = execution_requirements,
261261
mnemonic = "OpenROAD",
262-
toolchain = None,
262+
toolchain = None,
263263
)
264264

265265
return struct(db = output_db, log_file = log_file)

static_timing/build_defs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _run_opensta_impl(ctx):
5454
input_manifests = input_manifests,
5555
env = env,
5656
mnemonic = "RunningSTA",
57-
toolchain = None,
57+
toolchain = None,
5858
)
5959

6060
return [

synthesis/build_defs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def _synthesize_design_impl(ctx):
150150
input_manifests = input_manifests,
151151
env = env,
152152
mnemonic = "SynthesizingRTL",
153-
toolchain = None,
153+
toolchain = None,
154154
)
155155

156156
return [

0 commit comments

Comments
 (0)