Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16556 Discussions

How we can run batch file after compilation any quartus project in quartus automatically?

NTars
Novice
901 Views

I have one batch file that extract all the warnings lines from report file. After compilation process, we have all report files in our quartus directory. So, i want to run this batch file automatically after compilation process in quartus prime software.

Has anyone any idea on this?

0 Kudos
1 Solution
NTars
Novice
557 Views

Hi all,

I got one solution on this instead of using batch file.

I have designed one TCL script file which is executed after compilation has been done.

These are the steps to execute any TCL script file after Quartus compilation.

Steps :

  1.    Add your .tcl file to your project directory which you want to execute.
  2.    Add following command to .qsf file which can run tcl file after compilation process.

 

  •  set_global_assignment -name POST_FLOW_SCRIPT_FILE "quartus_sh:<tcl_file_name>.tcl"

 

      3.    Compile your project.

View solution in original post

3 Replies
RichardTanSY_Intel
557 Views

Hi, apologize for the delay. Would like to know whether you are able to run the batch file after compilation? Do you need further help?

0 Kudos
NTars
Novice
557 Views

No. Still not getting any solution on this.

Do you have any solution?

Thanks in advance.

0 Kudos
NTars
Novice
558 Views

Hi all,

I got one solution on this instead of using batch file.

I have designed one TCL script file which is executed after compilation has been done.

These are the steps to execute any TCL script file after Quartus compilation.

Steps :

  1.    Add your .tcl file to your project directory which you want to execute.
  2.    Add following command to .qsf file which can run tcl file after compilation process.

 

  •  set_global_assignment -name POST_FLOW_SCRIPT_FILE "quartus_sh:<tcl_file_name>.tcl"

 

      3.    Compile your project.

Reply