mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: yosys: Use external abc.
* gnu/packages/fpga.scm (yosys)[source]: Remove snippet and associated "modules" field. [arguments]: Replace "prepare-abc" phase with "use-external-abc", which configures the package's build system to use the system's "abc" executable instead of creating a duplicate; add "add-symbolic-link" phase to preserve availability of "yosys-abc" command. [inputs]: Move abc from here... [propagated-inputs]: ...to here, to ensure its availability at runtime. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
8b0024f8da
commit
277fb70442
1 changed files with 17 additions and 18 deletions
|
@ -147,12 +147,7 @@ (define-public yosys
|
|||
(sha256
|
||||
(base32
|
||||
"0lb9r055h8y1vj2z8gm4ip0v06j5mk7f9zx9gi67kkqb7g4rhjli"))
|
||||
(file-name (git-file-name name version))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
#~(begin
|
||||
(substitute* "Makefile"
|
||||
(("ABCREV = .*") "ABCREV = default\n"))))))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -175,14 +170,10 @@ (define-public yosys
|
|||
(replace 'configure
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "config-gcc" make-flags)))
|
||||
(add-after 'configure 'prepare-abc
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(mkdir-p "abc")
|
||||
(call-with-output-file "abc/Makefile"
|
||||
(lambda (port)
|
||||
(format port ".PHONY: all\nall:\n\tcp -f abc abc-default\n")))
|
||||
(copy-file (search-input-file inputs "/bin/abc") "abc/abc")
|
||||
(invoke "chmod" "+w" "abc/abc")))
|
||||
(add-after 'configure 'use-external-abc
|
||||
(lambda _
|
||||
(substitute* '("./Makefile")
|
||||
(("ABCEXTERNAL \\?=") "ABCEXTERNAL = abc"))))
|
||||
(add-before 'check 'fix-iverilog-references
|
||||
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||
(let ((iverilog (search-input-file (or native-inputs inputs)
|
||||
|
@ -202,7 +193,15 @@ (define-public yosys
|
|||
(("if ! which iverilog") "if ! true")
|
||||
(("iverilog ") (string-append iverilog " "))
|
||||
(("iverilog_bin=\".*\"") (string-append "iverilog_bin=\""
|
||||
iverilog "\"")))))))))
|
||||
iverilog "\""))))))
|
||||
(add-after 'install 'add-symbolic-link
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Previously this package provided a copy of the "abc"
|
||||
;; executable in its output, named "yosys-abc". Create a
|
||||
;; symbolic link so any external uses of that name continue to
|
||||
;; work.
|
||||
(symlink (search-input-file inputs "/bin/abc")
|
||||
(string-append #$output "/bin/yosys-abc")))))))
|
||||
(native-inputs
|
||||
(list bison
|
||||
flex
|
||||
|
@ -212,15 +211,15 @@ (define-public yosys
|
|||
python
|
||||
tcl)) ; tclsh for the tests
|
||||
(inputs
|
||||
(list abc
|
||||
graphviz
|
||||
(list graphviz
|
||||
libffi
|
||||
psmisc
|
||||
readline
|
||||
tcl
|
||||
xdot))
|
||||
(propagated-inputs
|
||||
(list z3)) ; should be in path for yosys-smtbmc
|
||||
(list abc
|
||||
z3)) ; should be in path for yosys-smtbmc
|
||||
(home-page "https://yosyshq.net/yosys/")
|
||||
(synopsis "FPGA Verilog RTL synthesizer")
|
||||
(description "Yosys synthesizes Verilog-2005.")
|
||||
|
|
Loading…
Reference in a new issue