Forum Discussion
Altera_Forum
Honored Contributor
18 years ago --- Quote Start --- I am puzzled by Quartuss 7.1 .The project runs well in Quartuss 5.1,but when i create the same project in Quartuss 7.1,it always shows me error messages Eg. the name of project is clkdiv,when compilated ,it shows errors: Error: Tcl error: wrong# args: should be "source fileName" while executing "source e:/program files/quartus/common/tcl/internal/eda_pt/eda_pt_script.tcl" --- Quote End --- The error occurs because the directory name is specified with a space in it (i.e. the "program files" directory). This can be fixed by adding quotes around the entire filepath. Try: source "e:/program files/quartus/common/tcl/internal/eda_pt/eda_pt_script.tcl" Instead of: source e:/program files/quartus/common/tcl/internal/eda_pt/eda_pt_script.tcl - Mark