summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorPatrick Lloyd2019-11-26 09:09:54 -0800
committerPatrick Lloyd2019-11-26 09:09:54 -0800
commit4c33ddb1dc6eb990f3f11aa20844534e748c3ebc (patch)
treeef109e6717c4469943d2cae4184620db885c7950 /PKGBUILD
parent8acc37bb78683e5203790da8092a230dc1eca2ec (diff)
downloadaur-4c33ddb1dc6eb990f3f11aa20844534e748c3ebc.tar.gz
added compiler flag to build() step to fix upstream bug breaking on python 3.8
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
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
}