Merge branch 'devel' into 'main'

bump gfortran to 14

See merge request glicid-public/guix-glicid!395
This commit is contained in:
Yann Dupont 2024-09-03 15:15:33 +00:00
commit 4714701a30

View file

@ -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)))