File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
org_theopenroadproject_asap7_pdk_r1p7 Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ def _skywater_corner_impl(ctx):
54
54
inputs = ctx .files .srcs ,
55
55
arguments = [args ],
56
56
executable = ctx .executable ._liberty_tool ,
57
+ use_default_shell_env = True ,
57
58
)
58
59
59
60
return [
Original file line number Diff line number Diff line change @@ -247,6 +247,7 @@ def _asap7_cell_library_impl(ctx):
247
247
inputs = default_corner_libraries ,
248
248
arguments = [args ],
249
249
executable = ctx .executable ._combine_liberty ,
250
+ use_default_shell_env = True ,
250
251
)
251
252
252
253
open_road_configuration = None
Original file line number Diff line number Diff line change @@ -363,6 +363,11 @@ synthesize_rtl = rule(
363
363
"deps" : attr .label_list (
364
364
providers = [[VerilogInfo ], [UhdmInfo ]],
365
365
),
366
+ "early_techmap" : attr .label (
367
+ allow_single_file = True ,
368
+ doc = "verilog/system verilog file for early techmap process" ,
369
+ mandatory = False ,
370
+ ),
366
371
"extra_tcl_command" : attr .string (
367
372
default = "" ,
368
373
),
@@ -399,11 +404,6 @@ synthesize_rtl = rule(
399
404
executable = True ,
400
405
cfg = "exec" ,
401
406
),
402
- "early_techmap" : attr .label (
403
- allow_single_file = True ,
404
- mandatory = False ,
405
- doc = "verilog/system verilog file for early techmap process"
406
- ),
407
407
},
408
408
)
409
409
You can’t perform that action at this time.
0 commit comments