Skip to content

Commit

Permalink
open: more log_cmd added for long running commands
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Jan 17, 2025
1 parent f45dc1c commit c6ace07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flow/scripts/open.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ source $::env(SCRIPTS_DIR)/read_liberty.tcl
# Read def
if {[env_var_exists_and_non_empty DEF_FILE]} {
# Read lef
read_lef $::env(TECH_LEF)
read_lef $::env(SC_LEF)
log_cmd read_lef $::env(TECH_LEF)
log_cmd read_lef $::env(SC_LEF)
if {[env_var_exists_and_non_empty ADDITIONAL_LEFS]} {
foreach lef $::env(ADDITIONAL_LEFS) {
read_lef $lef
log_cmd read_lef $lef
}
}
set input_file $::env(DEF_FILE)
read_def $input_file
log_cmd read_def $input_file
} else {
set input_file $::env(ODB_FILE)
read_db $input_file
log_cmd read_db $input_file
}

proc read_timing {input_file} {
Expand All @@ -27,7 +27,7 @@ proc read_timing {input_file} {
if {$sdc_file == ""} {
set sdc_file $::env(SDC_FILE)
}
read_sdc $sdc_file
log_cmd read_sdc $sdc_file
if [file exists $::env(PLATFORM_DIR)/derate.tcl] {
source $::env(PLATFORM_DIR)/derate.tcl
}
Expand Down

0 comments on commit c6ace07

Please sign in to comment.