summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Lloyd2019-11-26 09:09:54 -0800
committerPatrick Lloyd2019-11-26 09:09:54 -0800
commit4c33ddb1dc6eb990f3f11aa20844534e748c3ebc (patch)
treeef109e6717c4469943d2cae4184620db885c7950
parent8acc37bb78683e5203790da8092a230dc1eca2ec (diff)
downloadaur-4c33ddb1dc6eb990f3f11aa20844534e748c3ebc.tar.gz
added compiler flag to build() step to fix upstream bug breaking on python 3.8
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 03fd887ef99d..5a3776a1266e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = yosys-git
pkgdesc = A framework for RTL synthesis
- pkgver = r5298.0d2b87e3
+ pkgver = r7861.0466c485
pkgrel = 1
url = http://www.clifford.at/yosys/
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 3c1bc0849013..1ef6caf79adf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=yosys-git
pkgrel=1
-pkgver=r5976.7600ffe4
+pkgver=r7861.0466c485
pkgdesc='A framework for RTL synthesis'
arch=('x86_64' 'i686')
url='http://www.clifford.at/yosys/'
@@ -27,6 +27,7 @@ build(){
make config-gcc
echo "ENABLE_LIBYOSYS=1" >> Makefile.conf
echo "ENABLE_PYOSYS=1" >> Makefile.conf
+ echo "BOOST_PYTHON_LIB=-lboost_python38 -lpython3.8" >>Makefile.conf
make
}