Step 2: Utilize the V++ linker to link a kernel and generate fixed XSA file - 2023.2 English

Vitis Tutorials: Vitis Platform Creation (XD101)

Document ID
XD101
Release Date
2023-12-26
Version
2023.2 English

V++ usage is like the following:

v++ -l <kernel> --platform <extensible xsa> -s -g  -t <target> -o fixed.xsa

The options is explained like the following:

  • -l: run a link mode and specify the kernel

  • --platform: specify the extensible XSA file

  • -s: do not delete the intermedia file

  • -g: generate code for debugging

  • -t: specify the target, HW or HW emulation

  • -o: specify the output file name

Linking XSA file directly can provide fast track for hardware developers to iterate hardware designs​.