From 3727c021ff1c54593a9752ab7bd9a4fe2001317c Mon Sep 17 00:00:00 2001 From: "dupont-y@univ-nantes.fr" Date: Fri, 7 Apr 2023 09:31:07 +0200 Subject: [PATCH] add gfortran from 8 to 12. --- glicid/packages/gcc.scm | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index 2cd0513..8ec7511 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -13,6 +13,21 @@ ;; +(define-public gfortran-12 + (hidden-package (custom-gcc gcc-12 "gfortran" + '("fortran") %generic-search-paths))) + +(define-public gfortran-toolchain-12 + (package + (inherit (make-gcc-toolchain gfortran-12)) + (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))) @@ -26,3 +41,46 @@ 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-10 + (hidden-package (custom-gcc gcc-10 "gfortran" + '("fortran") %generic-search-paths))) + +(define-public gfortran-toolchain-10 + (package + (inherit (make-gcc-toolchain gfortran-10)) + (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-9 + (hidden-package (custom-gcc gcc-9 "gfortran" + '("fortran") %generic-search-paths))) + +(define-public gfortran-toolchain-9 + (package + (inherit (make-gcc-toolchain gfortran-9)) + (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-8 + (hidden-package (custom-gcc gcc-8 "gfortran" + '("fortran") %generic-search-paths))) + +(define-public gfortran-toolchain-8 + (package + (inherit (make-gcc-toolchain gfortran-8)) + (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.")))