guix-glicid/glicid/packages/gcc.scm

94 lines
4.6 KiB
Scheme
Raw Permalink Normal View History

2021-10-25 09:34:02 +02:00
(define-module (glicid packages gcc)
2025-02-10 13:12:59 +01:00
#:use-module (guix packages)
#:use-module (gnu packages commencement)
#:use-module (gnu packages gcc)
)
2021-10-25 09:14:58 +02:00
2023-01-02 11:18:12 +01:00
(define custom-gcc
(@@ (gnu packages gcc) custom-gcc))
2025-02-10 13:12:59 +01:00
2023-01-02 11:18:12 +01:00
(define %generic-search-paths
(@@ (gnu packages gcc) %generic-search-paths))
2021-10-25 09:14:58 +02:00
2023-04-07 09:31:07 +02:00
(define-public gfortran-12
2025-02-10 13:12:59 +01:00
(hidden-package (custom-gcc gcc-12 "gfortran" '("fortran") %generic-search-paths)))
2023-10-03 14:21:24 +02:00
2025-02-10 13:12:59 +01:00
(define make-gcc-toolchain
(@@ (gnu packages commencement) make-gcc-toolchain ))
2023-10-03 14:21:24 +02:00
2023-04-07 09:31:07 +02:00
(define-public gfortran-toolchain-12
2025-02-10 13:12:59 +01:00
(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.")))
2023-10-03 14:21:24 +02:00
(define-public gfortran-13
2025-02-10 13:12:59 +01:00
(hidden-package (custom-gcc gcc-13 "gfortran"
'("fortran") %generic-search-paths)))
2023-10-03 14:21:24 +02:00
(define-public gfortran-toolchain-13
2025-02-10 13:12:59 +01:00
(package
(inherit (make-gcc-toolchain gfortran-13))
(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.")))
2024-09-03 17:15:03 +02:00
(define-public gfortran-14
2025-02-10 13:12:59 +01:00
(hidden-package (custom-gcc gcc-14 "gfortran"
'("fortran") %generic-search-paths)))
2024-09-03 17:15:03 +02:00
(define-public gfortran-toolchain-14
2025-02-10 13:12:59 +01:00
(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.")))
2024-09-03 17:15:03 +02:00
(define-public gfortran-11
2025-02-10 13:12:59 +01:00
(hidden-package (custom-gcc gcc-11 "gfortran"
'("fortran") %generic-search-paths)))
2021-10-25 09:14:58 +02:00
(define-public gfortran-toolchain-11
2025-02-10 13:12:59 +01:00
(package
(inherit (make-gcc-toolchain gfortran-11))
(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.")))
2023-04-07 09:31:07 +02:00
(define-public gfortran-9
2025-02-10 13:12:59 +01:00
(hidden-package (custom-gcc gcc-9 "gfortran"
'("fortran") %generic-search-paths)))
2023-04-07 09:31:07 +02:00
(define-public gfortran-toolchain-9
2025-02-10 13:12:59 +01:00
(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.")))
2023-04-07 09:31:07 +02:00
(define-public gfortran-8
2025-02-10 13:12:59 +01:00
(hidden-package (custom-gcc gcc-8 "gfortran"
'("fortran") %generic-search-paths)))
2023-04-07 09:31:07 +02:00
(define-public gfortran-toolchain-8
2025-02-10 13:12:59 +01:00
(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.")))