Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add Windows support in convert_project
  • Loading branch information
cezdro committed Jul 8, 2025
commit bf6e4b4c55feeedb29b732ea6435a6fd7ab449fd
6 changes: 5 additions & 1 deletion tclapp/aldec/alint/convert_project.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ proc ::tclapp::aldec::alint::convert_project {alint_path} {

# Categories: xilinxtclstore, aldec, alint, convert

set alintcon $alint_path/bin/alintcon
if {$::tcl_platform(platform) == "windows"} {
set alintcon $alint_path/bin/alintcon.exe
} else {
set alintcon $alint_path/bin/alintcon
}

if {![file exists $alintcon]} {
error "Required file $alintcon not found"
Expand Down