Building Quartus Example Projects for MitySOM-A10S¶
Installing Tools¶
- Run the installer for Quartus Pro 18.0 or 18.1. The components selected by default are fine. When the installer finishes, install any drivers you may be prompted about.
- Run the corresponding (18.0 or 18.1) installer for SoCEDS Pro. Again the default components are fine, and again install any drivers you're prompted for after the installation finishes.
Note: On Linux, run withsudo
and when prompted to launch DS-5 after the install completes, do so; this will launch the installer for DS-5.
Building the Project¶
First, clone the project's git repository from:
git://support.criticallink.com/home/git/mitysom-a10s.git
Then follow the instructions for building on either Windows or Linux.
Windows¶
- Open the "SoC EDS Command Shell" application.
- In the shell that opens, cd to the top level of the project's git repository.
- Change into the project directory and run make:
cd A10S-P8-A5E-RC-SB/ make rbf
After the build completes, the outputs can be found in: ./output_files/
Linux¶
- Execute the embedded command shell script in the Quartus install directories:
<install_path>/embedded/embedded_command_shell.sh
- cd to the top level of the project's git repository.
- Change into the project directory and run make:
cd A10S-P8-A5E-RC-SB/ make rbf
After the build completes, the outputs can be found in: ./output_files/
Go to top