Forum Discussion
Altera_Forum
Honored Contributor
12 years agoAUtomating a workspace build from command line
Hi folks, We do a lot of customer releases and core testing, so I developed a script which builds my qsys system, implements the software, and runs the quartus compile. If I or my customer...
Altera_Forum
Honored Contributor
12 years agoThanks for the suggestion dsl.
I ended up creating a second script:
pushd software/app_standalone/
echo "**** Creating Elf ****"
make all
make mem_init_generate
find mem_init/ -type f -name '*.hex' -exec cp --target-directory=../../system_sim {} \;
popd
echo "**** Running Quartus Implementation Flow ****"
quartus_sh --64bit --flow compile project.qpf
It works well enough for command line purposes. I actually do like the IDE because of syntax checking and macro expansion, but this will do for very quick and easy changes to a release.