From 6913b074b20903b140b9f0dd2cbab043a90e55f4 Mon Sep 17 00:00:00 2001 From: "dupont-y@univ-nantes.fr" Date: Tue, 3 Sep 2024 17:15:03 +0200 Subject: [PATCH] bump gfortran to 14 --- glicid/packages/gcc.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index e1ce6a5..4c77de4 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -47,6 +47,24 @@ in the @code{debug} output), and binutils."))) +(define-public gfortran-14 + (hidden-package (custom-gcc gcc-14 "gfortran" + '("fortran") %generic-search-paths))) + + +(define-public gfortran-toolchain-14 + (package + (inherit (make-gcc-toolchain gfortran-14)) + (synopsis "Complete GCC tool chain for fortran lang development") + (description + "This package provides a complete GCC tool chain for + fortran lang development to be installed in user profiles. This includes + fortran, as well as libc (headers and binaries, plus debugging symbols + in the @code{debug} output), and binutils."))) + + + + (define-public gfortran-11 (hidden-package (custom-gcc gcc-11 "gfortran" '("fortran") %generic-search-paths)))