Skip to content

Commit adc9efc

Browse files
authored
Merge pull request The-OpenROAD-Project#3496 from The-OpenROAD-Project-staging/no-gui-no-lib
If GUI_TIMING=0 skip reading Liberty files
2 parents 48e6afe + a4c6c9b commit adc9efc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flow/scripts/open.tcl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ source $::env(SCRIPTS_DIR)/util.tcl
22

33
source_env_var_if_exists PLATFORM_TCL
44

5-
source $::env(SCRIPTS_DIR)/read_liberty.tcl
5+
if { [env_var_equals GUI_TIMING 1] } {
6+
source $::env(SCRIPTS_DIR)/read_liberty.tcl
7+
}
68

79
if { [env_var_exists_and_non_empty DEF_FILE] } {
810
log_cmd read_lef $::env(TECH_LEF)

0 commit comments

Comments
 (0)