Package Details: yosys-git 0.41+111.r13563.a84e4f44f-1

Git Clone URL: https://aur.archlinux.org/yosys-git.git (read-only, click to copy)
Package Base: yosys-git
Description: A framework for RTL synthesis
Upstream URL: https://yosyshq.net/yosys/
Keywords: fpga
Licenses: custom:ISC
Conflicts: yosys
Provides: yosys
Submitter: sebo
Maintainer: thasti
Last Packager: thasti
Votes: 18
Popularity: 0.009835
First Submitted: 2015-10-05 19:00 (UTC)
Last Updated: 2024-05-31 09:13 (UTC)

Dependencies (11)

Required by (21)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

cyrozap commented on 2017-12-17 12:13 (UTC)

xdot should be added as a either a dependency or an optional dependency, as it's required for the "show" command to work.

grahamedgecombe commented on 2017-12-09 21:20 (UTC) (edited on 2017-12-09 21:20 (UTC) by grahamedgecombe)

The prefix and destdir need to be specified separately for commands like yosys-config --datdir to work:

diff --git a/PKGBUILD b/PKGBUILD
index [`8a04531`](https://aur.archlinux.org/cgit/aur.git/commit/?h=yosys-git&id=8a04531)..c3bdc84 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,7 +20,7 @@ sha512sums=('SKIP'
 build(){
     cd ${srcdir}/yosys
     make config-gcc
-    make
+    make PREFIX=/usr
 }

 pkgver() {
@@ -30,7 +30,7 @@ pkgver() {

 package() {
     cd ${srcdir}/yosys
-    make PREFIX=$pkgdir/usr/ install
+    make PREFIX=/usr DESTDIR="$pkgdir" install

     install -D -m 644 \
     "${srcdir}/LICENSE" \

sebo commented on 2016-09-24 06:38 (UTC)

Hi arturo182, thank you for your feedback. Actually, AUR packages assume base-devel is installed (which includes flex and bison). See "Installing Packages" in https://wiki.archlinux.org/index.php/Arch_User_Repository .

arturo182 commented on 2016-09-23 18:54 (UTC)

I get "bison: command not found" and "flex: command not found" when trying to install, probably need to add those two as dependencies :)

sebo commented on 2016-05-08 20:27 (UTC)

Should be fixed now. Just FYI: the old PKGBUILD was using clang to build actually, not gcc. I changed the toolchain used from clang to gcc and also changed the build script to follow the README's installation instructions. The package now builds on my machine at least.

sebo commented on 2016-05-08 19:59 (UTC)

Thanks for reporting. I was able to reproduce. I'll try to narrow it down and then report to Clifford.

cyrozap commented on 2016-05-08 19:36 (UTC)

I'm getting this message when I try to build with GCC 6.1.1: https://paste.fedoraproject.org/364079/27358831/ I'm not sure whether this is just an issue on my computer, with the package, or with the Yosys source.