Skip to content

Commit

Permalink
Bump version to 1.1 + fix merge conflict leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Sep 22, 2024
1 parent a2eec53 commit 46ca4e5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 5 additions & 1 deletion flow.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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} {
Expand Down
File renamed without changes.
File renamed without changes.
5 changes: 0 additions & 5 deletions scripts/tcl_commands/checkers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand All @@ -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)

0 comments on commit 46ca4e5

Please sign in to comment.