diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2022-05-24 14:54:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-24 17:17:30 +0200 |
commit | 37e29ccd332f371aacedc71388e805fbc9e947fa (patch) | |
tree | a789525206933a8928e3b86f3a8462c43607676b /gnu/packages/gcc.scm | |
parent | dc9503dd5ef6f2e0aaeeced6d1b2f4ee8f8d9676 (diff) | |
download | guix-37e29ccd332f371aacedc71388e805fbc9e947fa.tar guix-37e29ccd332f371aacedc71388e805fbc9e947fa.tar.gz |
gnu: gcc: Add 12.1.0.
* gnu/packages/gcc.scm (gcc-12): New variable.
Diffstat (limited to 'gnu/packages/gcc.scm')
-rw-r--r-- | gnu/packages/gcc.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 2d62d9d207..6823b41ee0 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -698,6 +698,24 @@ It also includes runtime support libraries for these languages.") ("armhf" ,@%gcc-11-armhf-micro-architectures) ("x86_64" ,@%gcc-11-x86_64-micro-architectures)))))) +(define-public gcc-12 + (package + (inherit gcc-11) + ;; Note: 'compiler-cpu-architectures' is unchanged compared to GCC 11. + (version "12.1.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gcc/gcc-" + version "/gcc-" version ".tar.xz")) + (sha256 + (base32 + "0ywws66myjxcwsmla721g35d2ymlckq6ii7j9av0477ki5467zb2")) + (patches (search-patches "gcc-12-strmov-store-file-names.patch" + "gcc-5.0-libvtv-runpath.patch")) + (modules '((guix build utils))) + (snippet gcc-canadian-cross-objdump-snippet))))) + + ;; Note: When changing the default gcc version, update ;; the gcc-toolchain-* definitions. (define-public gcc gcc-10) |