Forum Discussion

s002wjh's avatar
s002wjh
Icon for New Contributor rankNew Contributor
5 years ago
Solved

tcl error

when running command quartus_sh -t my.tcl under cento terminal i receive following error ERROR: Quartus II Tcl command "execute_flow" belongs to the "::quartus::flow" package which is curr...
  • RichardT_altera's avatar
    5 years ago

    The error message explains that you need to add the load_package flow in your tcl script.
    For example:

    ## Open the project, run a compilation, and
    ## export the project database to
    ## version-compatible database files
    load_package database_manager
    load_package flow
    set project chiptrip
    project_new $project -overwrite
    execute_flow -compile
    export_database backup
    project_close $project

    Reference: Quartus II Scripting Reference Manual

    Best Regards,
    Richard

    p/s: If any answer from the community or Intel support are helpful, please feel free to give Kudos.