File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ def _extract_lef_and_liberty_impl(ctx):
24
24
25
25
content .append ("liberty_path: \" {}\" " .format (standard_cell .default_corner .liberty .short_path ))
26
26
out_files .append (standard_cell .default_corner .liberty )
27
+
28
+ for file in [corner .liberty for corner in standard_cell .corners ]:
29
+ content .append ("additional_liberty_paths: \" {}\" " .format (file .short_path ))
30
+ out_files .append (file )
27
31
else :
28
32
for file in ctx .attr .cell_lef_paths :
29
33
content .append ("cell_lef_paths: \" {}\" " .format (file ))
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ message PdkInfoProto {
6
6
repeated string cell_lef_paths = 1 ;
7
7
optional string tech_lef_path = 2 ;
8
8
optional string liberty_path = 3 ;
9
+ optional string additional_liberty_paths = 28 ;
9
10
optional string tracks_file_path = 4 ;
10
11
optional string pin_horizontal_metal_layer = 5 ;
11
12
optional string pin_vertical_metal_layer = 6 ;
You can’t perform that action at this time.
0 commit comments