Package Details: vivado 2024.1-1

Git Clone URL: https://aur.archlinux.org/vivado.git (read-only, click to copy)
Package Base: vivado
Description: FPGA/CPLD design suite for AMD devices
Upstream URL: https://www.xilinx.com/products/design-tools/vivado.html
Licenses: custom
Submitter: xiretza
Maintainer: VitalyR (leuko)
Last Packager: leuko
Votes: 17
Popularity: 0.108400
First Submitted: 2019-06-18 22:23 (UTC)
Last Updated: 2024-07-16 13:19 (UTC)

Pinned Comments

leuko commented on 2024-01-14 21:14 (UTC) (edited on 2024-01-14 21:15 (UTC) by leuko)

PKGBUILD cannot download Vivado, you have to download Vivado before executing the PKGBUILD. Refer to PKGBUILD.

Latest Comments

« First ‹ Previous 1 .. 8 9 10 11 12 13 14 Next › Last »

xiretza commented on 2020-03-04 12:20 (UTC)

@Focshole: I might add manual extraction soon since a new pacman release doesn't seem to be anywhere close.

/usr/lib/libtinfo.so.5 is provided by ncurses5-compat-libs, which is a dependency of this package - did you actually have a problem or did you just create the symlink as a misguided precaution (that's usually a horrible idea by the way, so-versions exist for a reason).

Focshole commented on 2020-03-04 10:43 (UTC) (edited on 2020-03-04 15:09 (UTC) by Focshole)

To update to last version (at least, it worked for me):

0) setting my aur helper working directory somewhere else (/tmp couldn't fit it)

1)updated pkgver, _more_ver and md5sum

2)in package() I added at the beginning:

tar -xrf Xilinx_Vivado_${pkgver}_${_more_ver}"

cd "Xilinx_Vivado_${pkgver}_${_more_ver}" (removed "SDK" word)

3)replace 2019.1 with 2019.2 in the "install udev rules"

If libtinfo.so.5 is missing (https://forums.xilinx.com/t5/Installation-and-Licensing/Installing-Vivado-2018-1-on-Fedora-28/td-p/855996), then check if it was installed from aur (Blackarch repo has a broken version)

CptnHddck commented on 2020-01-12 15:32 (UTC)

Thanks for this package [got my vote]. Used it to install Vivado 2019.2 on Manjaro 18.1.4 (using Pamac) after the Xilinx unified installer did not work (allegedly supports only a few distros). Verified functionality with Arty A7 FPGA dev board. Had to tweak the package file (obviously due to the different version => different hash). Also, libfakeroot was not found and I specified the absolute path to work around it. Added manual decompression of the tar.gz archive. As pointed out by the package file, the archive is rather big (26.5 GiB) and installation failed at the beginning because of the available disk space (had 150GiB in total); enlarged partition to work around this.

xiretza commented on 2019-11-29 09:06 (UTC)

Package currently doesn't build due to a makepkg bug. As soon as https://git.archlinux.org/pacman.git/commit/?id=349c22d043290ccd0cce9f30981f5415e295442a lands in a release, I can update it to 2019.2.

xw258 commented on 2019-10-31 13:43 (UTC)

@xiretza: that may explain. i built it directly under host env containing xorg, so my builds had libawt_xawt.so while your build did not. but that's just my guess.

and it took me too much time to build vivado... so i do not want to build it again until the next version. i will give a feedback at the next version if you made some patches, or a workaround patch if you did not.

xiretza commented on 2019-10-15 11:54 (UTC)

@heliochronix: cheers, the package now includes desktop files and udev rules!

heliochronix commented on 2019-10-14 19:00 (UTC)

@xiretza: I sent you a patch file via email. Hope it helps!

xiretza commented on 2019-10-13 00:42 (UTC)

@xw258: can't reproduce, it builds just fine in a clean base-devel chroot without libxtst.

xiretza commented on 2019-10-12 22:12 (UTC)

@heliochronix: could you send me a patch file? AUR comments break formatting a little.

heliochronix commented on 2019-10-11 20:58 (UTC) (edited on 2019-10-11 20:59 (UTC) by heliochronix)

Hello again,

I did some testing and actually found their script is terrible and that whole suggestion I had doesn't work. The changes I ended up making were as follows:

I added three new files based on the wiki:

Xilinx-DocNav.desktop

Xilinx-SDK.desktop

Xilinx-VivadoIDE.desktop

I added the relevant md5sums to the PKGBUILD.

I added the following install lines right before the Clean Up section that:

install -Dm644 "$pkgdir/opt/Xilinx/Vivado/2019.1/data/xicom/cable_drivers/lin64/install_script/install_drivers/52-xilinx-digilent>

install -Dm644 "$pkgdir/opt/Xilinx/Vivado/2019.1/data/xicom/cable_drivers/lin64/install_script/install_drivers/52-xilinx-ftdi-usb>

install -Dm644 "$pkgdir/opt/Xilinx/Vivado/2019.1/data/xicom/cable_drivers/lin64/install_script/install_drivers/52-xilinx-pcusb.ru>

install -Dm644 "$srcdir/Xilinx-DocNav.desktop" -t "$pkgdir/usr/share/applications"

install -Dm644 "$srcdir/Xilinx-SDK.desktop" -t "$pkgdir/usr/share/applications"

install -Dm644 "$srcdir/Xilinx-VivadoIDE.desktop" -t "$pkgdir/usr/share/applications"

This seems to have resulted in effectively the same behavior as the driver install script, and also adds the desktop files so they can be located by the system. It all seems to build and install correctly, and I can interface with at least one of the FPGA boards I have access to via the udev rules.