diff options
author | Cayetano Santos via Guix-patches via <guix-patches@gnu.org> | 2025-04-26 20:36:22 +0200 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-04-28 07:58:36 +0100 |
commit | f1ce653b13b300a8022da587541917941fdbbcaa (patch) | |
tree | f1844fdf3f429bfe90564d665f33b9b4f712323c /gnu/packages/fpga.scm | |
parent | 6134805e68560ae5d8627edeed953737db9b9d49 (diff) |
gnu: nvc: Update to 1.16.0.
Note that:
--enable-gcov is intended for debug/development of the simulator itself and
should not be enabled in release builds
- VHPI is now always enabled at build time and the `--enable-vhpi` configure
option has no effect.
* gnu/packages/fpga.scm (nvc): Update to 1.16.0.
[arguments] <#:configure-flags> Remove --enable-{vhpi,gcov}.
[native-inputs]: Add python and perl; sort.
[inputs]: Remove elfutils; sort.
Change-Id: If781ed403cd769db85f8265fc242d0f1608d737e
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages/fpga.scm')
-rw-r--r-- | gnu/packages/fpga.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index dfbe1a2894..3872f16036 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -73,6 +73,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages python-build) #:use-module (gnu packages python-xyz) + #:use-module (gnu packages ruby) #:use-module (gnu packages qt) #:use-module (gnu packages readline) #:use-module (gnu packages sphinx) @@ -551,7 +552,7 @@ automated testing of HDL code.") (define-public nvc (package (name "nvc") - (version "1.15.2") + (version "1.16.0") (source (origin (method git-fetch) (uri (git-reference @@ -560,12 +561,11 @@ automated testing of HDL code.") (file-name (git-file-name name version)) (sha256 (base32 - "1r6ba5jw4ja0hv366686d8haakm57h3fl95w81hda8haq6g0dj0q")))) + "1hi1mqhjbj7r3wcdkjr6yazwpc7y9lqc0b8bj4ikfgdfsmakm3s4")))) (build-system gnu-build-system) (arguments (list #:out-of-source? #t - #:configure-flags #~(list "--enable-vhpi" "--enable-tcl" "--enable-gcov" - "--enable-llvm") + #:configure-flags #~(list "--enable-tcl" "--enable-llvm") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'clean-up (lambda _ @@ -573,16 +573,17 @@ automated testing of HDL code.") (native-inputs (list automake autoconf + check ; for the tests flex gettext-minimal libtool pkg-config - which - check)) ; for the tests + python + ruby + which)) (inputs - (list elfutils + (list libffi llvm - libffi readline tcl `(,zstd "lib"))) |