[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add gfortran-toolchain
From: |
guix-commits |
Subject: |
04/04: gnu: Add gfortran-toolchain |
Date: |
Sat, 14 Dec 2019 18:34:53 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 4ac5d4fee19aad08289ed10da15e32d937ea595d
Author: Konrad Hinsen <address@hidden>
Date: Fri Dec 13 13:53:47 2019 +0100
gnu: Add gfortran-toolchain
* gnu/packages/commencement.scm: (gfortran-toolchain): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/commencement.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 6803037..14ecf24 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2601,4 +2601,17 @@ an d binaries, plus debugging symbols in the
@code{debug} output), and Binutils
(define-public gcc-toolchain-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