diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-11-21 02:10:14 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-11-21 02:10:46 +0100 |
commit | 5ae44c2cbc2077b3bee030c41038aa0a0ef99224 (patch) | |
tree | 5d7f085c46fa6d866b5f8e7f5fe8b341608462a4 /pcr/nextpnr-git | |
parent | 0e34922d7e9e7bfb2a59ac9339f3cff1bf3834d6 (diff) | |
download | abslibre-5ae44c2cbc2077b3bee030c41038aa0a0ef99224.tar.gz abslibre-5ae44c2cbc2077b3bee030c41038aa0a0ef99224.tar.bz2 abslibre-5ae44c2cbc2077b3bee030c41038aa0a0ef99224.zip |
nextpnr-git: fix missing libboost_python37.so.1.69.0
Without that fix we have the following error when running the
nextpnr-* binaries:
error while loading shared libraries: libboost_python37.so.1.69.0
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/nextpnr-git')
-rw-r--r-- | pcr/nextpnr-git/PKGBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pcr/nextpnr-git/PKGBUILD b/pcr/nextpnr-git/PKGBUILD index ead018102..f2dd4563c 100644 --- a/pcr/nextpnr-git/PKGBUILD +++ b/pcr/nextpnr-git/PKGBUILD @@ -1,15 +1,17 @@ # Maintainer(AUR): Graham Edgecombe <gpe@grahamedgecombe.com> # Maintainer: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> # parabola changes and rationale: -# no changes. +# - Fixed "error while loading shared libraries: libboost_python37.so.1.69.0" +# by switching from boost-libs to boost1.69-libs +# TODO: see if this needs to be sent to the nextpnr-git AUR maintainer pkgname=nextpnr-git -pkgver=r2197.cce5cb6 +pkgver=r2284.08cf545 pkgrel=1 pkgdesc='Portable FPGA place and route tool' arch=('i686' 'x86_64') url='https://github.com/YosysHQ/nextpnr' license=('custom:ISC') -depends=('boost-libs' 'python' 'qt5-base') +depends=('boost1.69-libs' 'python' 'qt5-base') makedepends=('boost' 'cmake' 'eigen' 'git' 'icestorm' 'trellis') provides=('nextpnr') conflicts=('nextpnr') |