gnu: libgccjit: Reword synopsis and description.
Fixes <https://bugs.gnu.org/43303>. Reported by Jeffrey Walton <noloader@gmail.com>. * gnu/packages/gcc.scm: (libgccjit)[synopsis,description]: Reword. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
66ce92ffe4
commit
a4fe16ee41
|
@ -9,6 +9,7 @@
|
||||||
;;; Copyright © 2018, 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2018, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||||
;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
|
;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
|
||||||
|
;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -759,7 +760,16 @@ as the 'native-search-paths' field."
|
||||||
(for-each delete-file
|
(for-each delete-file
|
||||||
(find-files (string-append (assoc-ref outputs "out") "/bin")
|
(find-files (string-append (assoc-ref outputs "out") "/bin")
|
||||||
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)"))
|
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)"))
|
||||||
#t))))))))
|
#t))))))
|
||||||
|
(synopsis "GCC library generating machine code on-the-fly at runtime")
|
||||||
|
(description
|
||||||
|
"This package is part of the GNU Compiler Collection and provides an
|
||||||
|
embeddable library for generating machine code on-the-fly at runtime. This
|
||||||
|
shared library can then be dynamically-linked into bytecode interpreters and
|
||||||
|
other such programs that want to generate machine code on-the-fly at run-time.
|
||||||
|
It can also be used for ahead-of-time code generation for building standalone
|
||||||
|
compilers. The just-in-time (jit) part of the name is now something of a
|
||||||
|
misnomer.")))
|
||||||
|
|
||||||
|
|
||||||
(define-public gccgo-4.9
|
(define-public gccgo-4.9
|
||||||
|
|
Reference in New Issue