Forum Discussion

host's avatar
host
Icon for Occasional Contributor rankOccasional Contributor
2 years ago
Solved

Automating POF generation

Hello, I'm using a .pfg script file to convert .sof files into .pof How can I automate the process such that a .pof file will be generated at the end of every compilation ?
  • FvM's avatar
    2 years ago

    Scripting is of course the solution.

    Call quartus_pfg with respective .pfg configuration in a tcl script, e.g. post_flow.tcl

    exec quartus_pfg -c yourpfgfile.pfg

    Specify post flow action in your project

    set_global_assignment -name POST_FLOW_SCRIPT_FILE "quartus_sh:flow_post.tcl"