mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: Add gfortran-toolchain
* gnu/packages/commencement.scm: (gfortran-toolchain): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
178e550034
commit
4ac5d4fee1
1 changed files with 13 additions and 0 deletions
|
@ -2601,4 +2601,17 @@ (define-public gcc-toolchain-8
|
||||||
(define-public gcc-toolchain-9
|
(define-public gcc-toolchain-9
|
||||||
(make-gcc-toolchain gcc-9))
|
(make-gcc-toolchain gcc-9))
|
||||||
|
|
||||||
|
;; Provide the Fortran toolchain package only for the version of gfortran that
|
||||||
|
;; is used by Guix internally to build Fortran libraries, because combining
|
||||||
|
;; code compiled with different versions can cause problems.
|
||||||
|
|
||||||
|
(define-public gfortran-toolchain
|
||||||
|
(package (inherit (make-gcc-toolchain gfortran))
|
||||||
|
(synopsis "Complete GCC tool chain for Fortran development")
|
||||||
|
(description "This package provides a complete GCC tool chain for
|
||||||
|
Fortran development to be installed in user profiles. This includes
|
||||||
|
gfortran, as well as libc (headers and binaries, plus debugging symbols
|
||||||
|
in the @code{debug} output), and binutils.")))
|
||||||
|
|
||||||
|
|
||||||
;;; commencement.scm ends here
|
;;; commencement.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue