Package Details: vivado 2024.2-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 – Vivado edition
Upstream URL: https://www.xilinx.com/products/design-tools/vivado.html
Licenses: custom
Conflicts: vitis
Submitter: xiretza
Maintainer: VitalyR (leuko)
Last Packager: leuko
Votes: 17
Popularity: 0.031913
First Submitted: 2019-06-18 22:23 (UTC)
Last Updated: 2024-11-20 22:25 (UTC)

Pinned Comments

leuko commented on 2024-01-14 21:14 (UTC) (edited on 2024-09-26 06:41 (UTC) by leuko)

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

This PKGBUILD is also able to install Vitis with some errors, however there is a standalone package called vitis AUR which seems to be more advanced than the installation in this PKGBUILD.

Latest Comments

1 2 3 4 5 6 .. 14 Next › Last »

leuko commented on 2024-11-15 09:29 (UTC)

Thanks @poscat. The default setting is indeed debug. I updated the PKGBUILD.

Poscat commented on 2024-11-15 06:37 (UTC)

The default settings is in fact not !debug. Yes debug won't increase binary size but It slows down the packaging time by A LOT.

leuko commented on 2024-09-24 20:21 (UTC)

@Sponge_Boi, thanks for your suggestion about temp files. This has been bugging me too :) I integrated your suggestion.

But I cannot confirm your suggestion about !debug. Just to be sure I repackaged with !debug and did not see any difference in package size. In my opinion !debug should be part of the global makepkg.conf. Moreover the default setting is !debug as I know.

I made also the following changes to the PKGBUILD:

  • I believe most people do not want to install all features because of the large size. I made configuration per install_config-*.txt as default and made these templates part of the repo.
  • I added patches to fix the Python virtual environment that the Vitis Unified editor uses. I created a split package for Vitis so these patches are separated from the Vivado package. I left pkgname as (vivado) so that unexperienced users can avoid making both Vivado and Vitis packages at the same time.

Sponge_Boi commented on 2024-09-21 20:30 (UTC) (edited on 2024-09-21 20:31 (UTC) by Sponge_Boi)

When started, Vivado creates log files in whichever path it starts in without deleting them. The desktop entry does not specify a path, so more often than not, $HOME gets filled up with vivado*.log and vivado*.jou files. I suggest we add Path=/tmp to any desktop files created in /usr/share/applications/ in order to stop log files from bloating up the home directory and to make log files get wiped on boot.

Sponge_Boi commented on 2024-09-21 19:45 (UTC) (edited on 2024-09-21 19:46 (UTC) by Sponge_Boi)

makepkg is able to build all parts of the package smoothly and quickly, except for building debug flags. When building debug flags, it has to copy everything over. This makes the package twice the size of what it otherwise would be. It also takes significantly longer to build the package. Please consider disabling the debug flag in options:


  diff --git a/PKGBUILD b/PKGBUILD
  index 81da867..a956c42 100644
  --- a/PKGBUILD
  +++ b/PKGBUILD
  @@ -98,7 +98,10 @@ md5sums=(
   )

   # Takes forever for probably minimal gain
  -options=('!strip')
  +options=(
  +  '!strip'
  +  '!debug'
  +)

   prepare() {
       rm -rf "$srcdir/installer_temp"

leuko commented on 2024-06-10 13:39 (UTC)

Updated the PKGBUILD. I did not increment pkgrel to avoid repackaging. Thanks @desowin

desowin commented on 2024-06-09 15:49 (UTC)

==> Making package: vivado 2024.1-1 (Sun 09 Jun 2024 05:33:50 PM CEST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found FPGAs_AdaptiveSoCs_Unified_2024.1_0522_2023.tar.gz
  -> Found spoof_homedir.c
==> Validating source files with md5sums...
    FPGAs_AdaptiveSoCs_Unified_2024.1_0522_2023.tar.gz ... Passed
    spoof_homedir.c ... Passed
==> Extracting sources...
  -> Extracting FPGAs_AdaptiveSoCs_Unified_2024.1_0522_2023.tar.gz with bsdtar
==> Starting prepare()...
rm: cannot remove '/tmp/makepkg/vivado/src/installer_temp': No such file or directory
==> ERROR: A failure occurred in prepare().
    Aborting...

A simple workaround is mkdir -p /tmp/makepkg/vivado/src/installer_temp. A proper fix would be to make the rm in prepare() not fatal.