Altera_Forum
Honored Contributor
11 years agoTCL scripting with PRE_FLOW_SCRIPT_FILE
Hi!
Including the following line in my QSF-File calls the TCL-Script before compilation to generate a timestamp form y FPGA.set_global_assignment -name pre_flow_script_file "quartus_sh:compile_timestamp_make.tcl" In addition to timestamp generation I have further things to do prior to compilation. I want to extract the revision number from subversion. Thus I wrote another TCL to do this and added another line to the QSF-File: set_global_assignment -name pre_flow_script_file "quartus_sh:compile_timestamp_make.tcl"
set_global_assignment -name pre_flow_script_file "quartus_sh:compile_svn_revision_make.tcl" Unfortunately this does not work. It seems to me that QuartusII can only handle one single TCL File with „PRE_FLOW_SCRIPT_FILE“ Is this correct or is there a way to handle multiple TCLs with „PRE_FLOW_SCRIPT_FILE“? Thanks a lot for any help mschultheis