Intel® Quartus® Prime Pro Edition User Guide: Scripting
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: mwh1410471007777
Ixiasoft
Visible to Intel only — GUID: mwh1410471007777
Ixiasoft
2.7.2. Check Design File Syntax
When options are not specified, the executable uses the project database values. If not specified in the project database, the executable uses the Intel® Quartus® Prime software default values.
set dir [pwd]; # set dir to current working directory # assign quartus_files variable to all files within current working directory # asterisk (*) may be changed to specific file extensions (i.e. *.v, *.vhdl, *.etc) set quartus_files [glob -directory $dir *] # open project fir_filter with revision name filtref project_open fir_filter -revision filtref foreach file $quartus_files { post_message $file; # echo which file was analyzed analyze_files -files $file -library work; # analyze file for syntax } project_close; # close project