Altera_Forum
Honored Contributor
13 years agoTCL Scripting
I wrote different style of tcl scripts and has caused the error.
1st style: quartus_sh -t project_open.tcl quartus_sh -t pin_assignment.tcl 2nd style quartus_sh -t pin_assignment.tcl -project Test project_open.tcl project_open Test pin_assignment.tcl set_global_assignment ..... 1st and 2nd style get an ERROR: Open project does not exist.. 3rd style (Working) quartus_sh -t pin_assignment_new.tcl pin_assignment_new.tcl project_open Test set_global_assignment ..... My question is does it necessary to include project_open <project_name> in tcl file when i want to call quartus_sh -t <>.tcl Can i do it using 1st style or 2nd style? Or any better way? Thanks