Scripts are provided to recreate projects, and generate outputs in each step. To use these scripts, run the following steps.
Run build.
# cd to the step directory, e.g. cd step1_vivado make all
To clean the generated files, run:
make clean
This script creates the same design, generate block diagram and export XSA.
A top level all in one build script is also provided. To build everything (step 1 to step 3) with one command, go to ref_files directory and run:
cd ref_files
make all COMMON_IMAGE_VERSAL=<path/to/common_image/> #Specify the path of the common image
This command is to generate platform with pre-built software components and do software emulation by running vadd applicationand aie_adder to test this platform.
make sd_card COMMON_IMAGE_VERSAL=<path/to/common_image/> #Specify the path of the common image
This command is to generate platform with pre-built software components and do hardware test on board by running vadd and aie_adder application to test this platform.
To clean all the generated files, run:
make clean