guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 12ee4366c5f27001d21ed24fdd903c65f217c33e Author: Zheng Junjie <[email protected]> AuthorDate: Sat Jul 18 15:25:09 2026 +0800 gnu: gcc-13: Update to 13.4.0. * gnu/packages/gcc.scm (gcc-13): Update to 13.4.0. [arguments]: Remove the phases that are actually not useful. Change-Id: I63fc88046c848bfdf77dccb0fe8d1ac8ee7a34fe --- gnu/packages/gcc.scm | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index e6b7897b53..52e8e2e719 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -958,14 +958,14 @@ It also includes runtime support libraries for these languages.") (define-public gcc-13 (package (inherit gcc-11) - (version "13.3.0") + (version "13.4.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gcc/gcc-" version "/gcc-" version ".tar.xz")) (sha256 (base32 - "10y0l1hx1haz4cj4d4g9f2ci5h7z9555i52f90zs2hwm3iifji88")) + "1xd8kjssyhq82y8a8yhcpy6mmjfbql1sr22makf8ymj0n3dyck4w")) (patches (search-patches "gcc-12-strmov-store-file-names.patch" "gcc-5.0-libvtv-runpath.patch" "gcc-13-libsanitizer-no-crypt.patch" @@ -973,13 +973,6 @@ It also includes runtime support libraries for these languages.") "gcc-mangle-guix-store.patch")) (modules '((guix build utils))) (snippet gcc-canadian-cross-objdump-snippet))) - (arguments - (substitute-keyword-arguments arguments - ((#:phases phases #~%standard-phases) - (if (target-hurd?) - #~(modify-phases #$phases - (delete 'patch-hurd-libpthread)) - phases)))) (properties `((compiler-cpu-architectures ("aarch64" ,@%gcc-13-aarch64-micro-architectures)
