Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 7a48c311 authored by Vauban's avatar Vauban
Browse files

Libero: Enable use of Libero 2023.2.

parent 5165851b
No related merge requests found
......@@ -9,11 +9,14 @@
set libero_release [split [get_libero_version] .]
if {[string compare [lindex $libero_release 0] "2022"] == 0 && [string compare [lindex $libero_release 1] "3"] == 0} {
puts "Libero v2022.2 detected."
puts "Libero v2022.3 detected."
} elseif {[string compare [lindex $libero_release 0] "2023"] == 0 && [string compare [lindex $libero_release 1] "2"] == 0} {
puts "Libero v2023.2 detected."
} else {
error "Incorrect Libero version detected. Please use Libero v2022.2 to run these scripts."
error "Incorrect Libero version detected. Please use Libero v2023.2 or v2022.3 to run these scripts."
}
if { [lindex $tcl_platform(os) 0] == "Windows" } {
if {[string length [pwd]] < 90} {
puts "Project path length ok."
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment