Stefan
New Contributor
6 years agoHow to run tool in parallel to design compilation?
Hi there,
I want to run a script/tool in parallel to Quartus compilation run. How can I do this?
I tried this:
project.qsf
set_global_assignment -name PRE_FLOW_SCRIPT_FILE "quartus_sh:script_files/build_pre_flow.tcl"script_files/build_pre_flow.tcl
exec [info nameofexecutable] -t [pwd]/script_files/temp/run_forever.tcl &script_files/temp/run_forever.tcl
while 1 {
after 1000
}Output on compilation:
Info: *******************************************************************
Info: Running Quartus Prime Shell
Info: Command: quartus_sh -t script_files/build_pre_flow.tcl compile project revision
Info: Quartus(args): compile project revision
Info (23030): Evaluation of Tcl script script_files/build_pre_flow.tcl was successful
Info: Quartus Prime Shell was successful. 0 errors, 0 warnings... but now he stops here with compilation time clock still running, and progress staying at 0 % - why?
Seems like (despite message say that script was successful) still checks if script spawned another process and he won't continue until that process stops. If I kill that process, compilation starts - but that's not what I want, I want to have that running during compilation. How can I do that?
Thanks in advance