litex-buildenv icon indicating copy to clipboard operation
litex-buildenv copied to clipboard

missing libtinfo.so.5 causes Vivado install to hang

Open pdp7 opened this issue 6 years ago • 3 comments

on Ubuntu 19.10, when running:

make gateware

I get this error:

application-specific initialization failed: couldn't load file "librdi_commontasks.so": libtinfo.so.5: cannot open shared object file: No such file or directory

pdp7 avatar Feb 02 '20 15:02 pdp7

Resolution: I had to install libtinfo5

pdp7 avatar Feb 02 '20 15:02 pdp7

The download-env.sh script should check that the libtinfo5 library is available so that Vivado doesn't fails to find this library and just gets stuck without really doing nothing.

mithro avatar Feb 03 '20 08:02 mithro

sudo apt install libtinfo-dev
sudo ln -s /lib/x86_64-linux-gnu/libtinfo.so.6 /lib/x86_64-linux-gnu/libtinfo.so.5

found this here:

https://askubuntu.com/questions/1155936/how-do-i-uninstall-vivado-on-ubuntu-19-04/1193020#1193020

Ask Ubuntu
I recently installed Vivado 2019.1 on Ubuntu by running sudo ./xsetup. I didn't pay attention where Vivado was installed, so by default it was installed in /tools/Xilinx/Vivado. Because of that, I ...

CarlFK avatar Feb 22 '20 08:02 CarlFK