Setup Vivado on Void Linux
Setup & Dependencies
Get installation files from xilinx. Select the tar ball option.
Tarball has a script called installLibs.sh
. Looking into it we see the dependencies for Ubuntu:
doUbuntu()
{
### AIE Tools prerequisite libraries
apt-get update | tee -a $logFile
apt-get install -y libc6-dev-i386 net-tools | tee -a $logFile
apt-get install -y graphviz | tee -a $logFile
apt-get install -y make | tee -a $logFile
### Vitis Tools prerequisite libraries
apt-get install -y unzip | tee -a $logFile
apt-get install -y zip | tee -a $logFile
apt-get install -y g++ | tee -a $logFile
apt-get install -y libtinfo5 | tee -a $logFile
apt-get install -y xvfb | tee -a $logFile
apt-get install -y git | tee -a $logFile
apt-get install -y libncursesw5 | tee -a $logFile
apt-get install -y libc6-dev-i386 | tee -a $logFile
apt-get install -y libnss3-dev | tee -a $logFile
apt-get install -y libgdk-pixbuf2.0-dev | tee -a $logFile
apt-get install -y libgtk-3-dev | tee -a $logFile
apt-get install -y libxss-dev | tee -a $logFile
apt-get install -y libasound2 | tee -a $logFile
apt-get install -y compat-openssl10 | tee -a $logFile
apt-get install -y fdisk | tee -a $logFile
}
First of make sure to have base-devel
installed:
xi base-devel
Here is the rest of the packages listed as required:
# you probably already have these
xi graphviz make unzip zip gcc git libfdisk
# all ncurses compat libs
xi ncurses ncurses-libs ncurses-base ncurses-libtinfo-libs \
ncurses-libs-32bit ncurses-libtinfo-libs-32bit ncurses-term
xi xorg-server-xvfb xvfb-run # xvfb
xi nss libnss-cache # libnss3
xi alsa-lib alsa-lib-32bit # asound2
xi libXScrnSaver libXScrnSaver-32bit # libxss
xi gtk+3 gtk+3-32bit # gtk3
Instalation being stuck in “generating installed device list”
Last step of installation involves some tcl
scripts to be run. These scripts are looking
for hardcoded libtinfo.so.5
it seems. Void linux doesn’t have it right now and it only
has the latest version. Here is a basic hack to make it work:
# creating a dummy, fake, tinfo5 from tinfo6
cp /lib/libtinfo.so.6 /lib/libtinfo.so.5
Without this hacky fix, installer will be stuck forever without any indication of the error.
In any case, if this doesn’t solve your problem, you are left with a painful debugging session. Here is how to start it:
# run tcl generation script by hand
# this way it shows the actual reasons of failure
# change paths to your setup accordingly
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/home/pio/3pp/xilinx/Vivado/2024.2/lib/lnx64.o/:/home/pio/3pp/xilinx/SDK/2024.2/lib/lnx64.o/:/home/pio/3pp/xilinx/Vivado/2024.2/lnx64/tools/clang-3.9/lib /home/pio/3pp/xilinx/Vivado/2024.2/bin/vivado -nolog -nojournal -mode batch -source /home/pio/3pp/xilinx/.xinstall/Vivado_2024.2/scripts/xlpartinfo.tcl -tclargs /home/pio/3pp/xilinx/Vivado/2024.2/data/parts/installed_devices.txt
Run Setup
Installed tarbal has an executable called xsetup
. You can run it directly to get the GUI
version or you can run the batch version without any gui:
# gui installer
./xsetup
# cli installer
./xsetup --agree 3rdPartyEULA,XilinxEULA --batch Install \
--product "Vivado" --edition "Vivado ML Enterprise" \
--location "/home/pio/3pp/xilinx"
Installing Drivers
You will need correct USB drivers to be ablet to detect your FPGA boards. For example, for my digilent board I had to install drivers from here:
<path-to-setup>/Vivado/2024.2/data/xicom/cable_drivers/lin64/install_script/install_drivers
This script installs the correct udev rules and such.
Considerations After Setup
Consider removing the libtinfo
hack we did after install. Setup also doesn’t respect your
custom xdg directories
so you may need to tweak those as well.