all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#65202] [PATCH] gnu: gcc-10: Update to 10.5.0.
@ 2023-08-10 10:42 Michael Ford
  2023-10-20 21:39 ` [bug#65202] [PATCH v2] " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Ford @ 2023-08-10 10:42 UTC (permalink / raw)
  To: 65202

[-- Attachment #1: Type: text/plain, Size: 1475 bytes --]

From 8609bdc9ff3109e8cb44a9557d591ff22bda9a48 Mon Sep 17 00:00:00 2001
From: fanquake <fanquake@gmail.com>
Date: Thu, 10 Aug 2023 12:05:32 +0200
Subject: [PATCH] gnu: gcc-10: Update to 10.5.0.

* gnu/packages/gcc.scm (gcc-10): Update to 10.5.0.
* gnu/packages/gcc.scm (gcc-10)[source](patches): Remove
gcc-10-tree-sra-union-handling.patch.
---
 gnu/packages/gcc.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 862fdd79c3..98891f81a3 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -706,17 +706,16 @@ (define-public gcc-9
 (define-public gcc-10
   (package
    (inherit gcc-8)
-   (version "10.4.0")
+   (version "10.5.0")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/gcc/gcc-"
                                 version "/gcc-" version ".tar.xz"))
             (sha256
              (base32
-              "1wg4xdizkksmwi66mvv2v4pk3ja8x64m7v9gzhykzd3wrmdpsaf9"))
+              "1h87lcfaga0ydsf4pkhwlnjr8mky5ix8npbv6iy3jvzlzm1ra415"))
             (patches (search-patches "gcc-9-strmov-store-file-names.patch"
-                                     "gcc-5.0-libvtv-runpath.patch"
-
"gcc-10-tree-sra-union-handling.patch"))
+                                     "gcc-5.0-libvtv-runpath.patch"))
             (modules '((guix build utils)))
             (snippet gcc-canadian-cross-objdump-snippet)))
    (properties
-- 
2.41.0

[-- Attachment #2: Type: text/html, Size: 1954 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#65202] [PATCH v2] gnu: gcc-10: Update to 10.5.0.
  2023-08-10 10:42 [bug#65202] [PATCH] gnu: gcc-10: Update to 10.5.0 Michael Ford
@ 2023-10-20 21:39 ` Ludovic Courtès
  2023-10-23 22:06   ` bug#65202: " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2023-10-20 21:39 UTC (permalink / raw)
  To: 65202; +Cc: Ludovic Courtès, fanquake

From: fanquake <fanquake@gmail.com>

* gnu/packages/gcc.scm (gcc-10): Update to 10.5.0.
Remove ‘gcc-10-tree-sra-union-handling.patch’.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/gcc.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

Hi!

This patch had been mangled by the mail user agent and then fell
through the cracks; bumping!

Ludo'.

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 04926e6385..621644b93f 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -706,17 +706,16 @@ (define-public gcc-9
 (define-public gcc-10
   (package
    (inherit gcc-8)
-   (version "10.4.0")
+   (version "10.5.0")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/gcc/gcc-"
                                 version "/gcc-" version ".tar.xz"))
             (sha256
              (base32
-              "1wg4xdizkksmwi66mvv2v4pk3ja8x64m7v9gzhykzd3wrmdpsaf9"))
+              "1h87lcfaga0ydsf4pkhwlnjr8mky5ix8npbv6iy3jvzlzm1ra415"))
             (patches (search-patches "gcc-9-strmov-store-file-names.patch"
-                                     "gcc-5.0-libvtv-runpath.patch"
-                                     "gcc-10-tree-sra-union-handling.patch"))
+                                     "gcc-5.0-libvtv-runpath.patch"))
             (modules '((guix build utils)))
             (snippet gcc-canadian-cross-objdump-snippet)))
    (properties

base-commit: 6b0a32196982a0a2f4dbb59d35e55833a5545ac6
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#65202: [PATCH v2] gnu: gcc-10: Update to 10.5.0.
  2023-10-20 21:39 ` [bug#65202] [PATCH v2] " Ludovic Courtès
@ 2023-10-23 22:06   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-10-23 22:06 UTC (permalink / raw)
  To: 65202-done; +Cc: fanquake

Ludovic Courtès <ludo@gnu.org> skribis:

> From: fanquake <fanquake@gmail.com>
>
> * gnu/packages/gcc.scm (gcc-10): Update to 10.5.0.
> Remove ‘gcc-10-tree-sra-union-handling.patch’.

Pushed as 2fbb5398a39bf18e41235891a0740fa0bc4d7a4d.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-10-23 22:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-10 10:42 [bug#65202] [PATCH] gnu: gcc-10: Update to 10.5.0 Michael Ford
2023-10-20 21:39 ` [bug#65202] [PATCH v2] " Ludovic Courtès
2023-10-23 22:06   ` bug#65202: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.