diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-03-24 14:16:36 +0100 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-03-26 12:19:20 +0800 |
commit | 5d2f5d176199fcac87bc37bea7f87d6af76b08f3 (patch) | |
tree | abf3ca40f6edf911f7e3265341952ad829e8e9e2 | |
parent | 4d655e48836d5be89942a38da532431316f6887b (diff) | |
download | guix-5d2f5d176199fcac87bc37bea7f87d6af76b08f3.tar.gz guix-5d2f5d176199fcac87bc37bea7f87d6af76b08f3.zip |
gnu: nvc: Update to 1.15.2.
* gnu/packages/fpga.scm (nvc): Update to 1.15.2.
Change-Id: I160e0927b28efc980e9b7ce4aae9466dbabb1666
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/fpga.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index 28ddfb42d4..893e875276 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -521,7 +521,7 @@ automated testing of HDL code.") (define-public nvc (package (name "nvc") - (version "1.15.1") + (version "1.15.2") (source (origin (method git-fetch) (uri (git-reference @@ -530,11 +530,12 @@ automated testing of HDL code.") (file-name (git-file-name name version)) (sha256 (base32 - "1hqkgwkvflha1fpch13byb8clwa97n6z1d9a2d34cqzsjrzkdx0k")))) + "1r6ba5jw4ja0hv366686d8haakm57h3fl95w81hda8haq6g0dj0q")))) (build-system gnu-build-system) (arguments (list #:out-of-source? #t - #:configure-flags #~(list "--enable-vhpi") + #:configure-flags #~(list "--enable-vhpi" "--enable-tcl" "--enable-gcov" + "--enable-llvm") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'clean-up (lambda _ @@ -550,8 +551,10 @@ automated testing of HDL code.") check)) ; for the tests (inputs (list elfutils - llvm-9 + llvm libffi + readline + tcl `(,zstd "lib"))) (synopsis "VHDL compiler and simulator") (description "This package provides a VHDL compiler and simulator.") |