Altera_Forum
Honored Contributor
10 years agoquartus_sta won't run after "Succesful" Fitter run
Hi, I'm trying to move to a shell script for this first time with Altera tools and I am getting an error:
Error: Can't run TimeQuest Timing Analyzer (quartus_sta) -- Fitter (quartus_fit) failed or was not run. when a few commands lines earlier I get a successful fitter completion. I'm guessing this has to do with a setting issue or my not understanding some of the options (it seems like it is not saving the fitter information in the database or something). 1. Why isn't the fitter completion being saved? Two related Qs: 2. Like for example: what is "read_settings_files=on" do? 3. (And what documentation is this information in - none that I can find?) I am running this script:#!/bin/sh
set PROJECT="htc_prj"
set TOP_LEVEL="htc_top"
set DEVICE_FAMILY="Stratix III"
set DEVICE_PART="EP3SE260F1517C2"
set PACKING_OPTION="maximize_speed"
time quartus_map -c "$TOP_LEVEL" --read_settings_files=on --write_settings_files=on --parallel=24 $PROJECT
time quartus_fit -c "$TOP_LEVEL" --read_settings_files=on --write_settings_files=on --parallel=24 $PROJECT
time quartus_asm $PROJECT
time quartus_sta $PROJECT