Added gcc make toolchain for remote compilation

Signed-off-by: Joppe Blondel <joppe@blondel.nl>
This commit is contained in:
2022-09-08 13:58:03 +02:00
parent 7c5351b9c3
commit 15d7e8b801
5 changed files with 89 additions and 5 deletions

View File

@ -90,4 +90,28 @@ files_verilog = OUT/synth/impl_netlist.v
#files_sysverilog =
#files_xci =
files_other = OUT/synth/impl_netlist.sdf
# ######################################
# ######################################
# Firmware compilation
[target.firmware]
toolchain = gccmake
# Toolchain settings
output_files = build/app.elf DISASS
buildroot = SW
# Fileset
files_makefile = SW/Makefile
files_other = SW/linker.ld
SW/src/boot.S
SW/src/main.c
SW/src/printf.c
SW/src/printf.h
SW/src/uart.c
SW/src/uart.h
SW/src/xil_io.h
SW/src/zynq.h
OUT/ip/zynqps/ps7_init.c
OUT/ip/zynqps/ps7_init.h
# ######################################