Skip to content

Commit 6565841

Browse files
authored
Merge pull request #2408 from The-OpenROAD-Project-staging/view-all-cells
Add ADDITIONAL_LEFS to scripts/view_cells.tcl
2 parents 10637aa + 23e862a commit 6565841

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

flow/scripts/view_cells.tcl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
read_lef $::env(TECH_LEF)
44
read_lef $::env(SC_LEF)
5+
if {[info exist ::env(ADDITIONAL_LEFS)]} {
6+
foreach lef $::env(ADDITIONAL_LEFS) {
7+
read_lef $lef
8+
}
9+
}
510

611
# Create the block
712
set db [ord::get_db]

0 commit comments

Comments
 (0)