diff --git a/flow.tcl b/flow.tcl index 5ded76929..78f2f47ae 100755 --- a/flow.tcl +++ b/flow.tcl @@ -17,7 +17,11 @@ set ::env(OPENLANE_ROOT) [file dirname [file normalize [info script]]] if { ! [info exists ::env(OPENROAD_BIN) ] } { set ::env(OPENROAD_BIN) openroad } -set ::env(TCL8_5_TM_PATH) "$::env(OPENLANE_ROOT)/scripts:$::env(TCL8_5_TM_PATH)" +if { [info exists ::env(TCL8_5_TM_PATH)] } { + set ::env(TCL8_5_TM_PATH) "$::env(OPENLANE_ROOT)/scripts:$::env(TCL_8_5_TM_PATH)" +} else { + set ::env(TCL8_5_TM_PATH) "$::env(OPENLANE_ROOT)/scripts" +} package require openlane; # provides the utils as well proc run_placement_step {args} { diff --git a/scripts/openlane-1.0.0.tm b/scripts/openlane-1.1.0.tm similarity index 100% rename from scripts/openlane-1.0.0.tm rename to scripts/openlane-1.1.0.tm diff --git a/scripts/openlane_utils-1.0.0.tm b/scripts/openlane_utils-1.1.0.tm similarity index 100% rename from scripts/openlane_utils-1.0.0.tm rename to scripts/openlane_utils-1.1.0.tm diff --git a/scripts/tcl_commands/checkers.tcl b/scripts/tcl_commands/checkers.tcl index 11ac6e828..02d86ab0f 100755 --- a/scripts/tcl_commands/checkers.tcl +++ b/scripts/tcl_commands/checkers.tcl @@ -386,7 +386,6 @@ proc quit_on_unconnected_pdn_nodes {args} { throw_error } } -<<<<<<< HEAD proc quit_on_klayout_drc {report_file} { set violations_dict [json::json2dict [cat $report_file]] @@ -402,7 +401,3 @@ proc quit_on_klayout_drc {report_file} { puts_info "No KLayout DRC violations after GDS streaming out." } } - -package provide openlane 0.9 -======= ->>>>>>> c043bc27 (Change Versioning Strategy)