Forum Discussion
Hi,
You need to rewrite your code to control the compilation stages. I will give you an example here how you do it:
set dirs ""
lappend dirs "<Project directory>"
lappend dirs "<Project directory>"
foreach dir $dirs {
puts $dir
catch {cd $dir}
set project_name [glob *.qpf]
project_open $project_name
Source build_pre_flow.tcl
execute_flow -compile // you can break the stage here if you want. e.g. execute_module -tool fit, execute_module -tool syn, execute_module -tool sta
project_close
lappend report "[format "%-15s %-30s %-20s" $dir $project_name DONE]"
}
foreach line $report {
puts $line
}
Hi KTan_Intel, thanks for your reply!
I'm sorry, I can't find that file you mentioned (without filename) - I searched my project for parts of it and I wasn't successful. Where is this script located at?
In the end, I want to be able to press [Ctrl]-[L] (as usual) and have mentioned functionality too.