public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gcc-patches:master commit in: 14.2.0/gentoo/
Date: Sun, 29 Sep 2024 19:20:49 +0000 (UTC)	[thread overview]
Message-ID: <1727636571.badbdc155d678ece9a71c2bd7c4506600aace07c.sam@gentoo> (raw)

commit:     badbdc155d678ece9a71c2bd7c4506600aace07c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 19:02:51 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 19:02:51 2024 +0000
URL:        https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=badbdc15

14.2.0: add 78_all_PR115917-ada-lto.patch

Signed-off-by: Sam James <sam <AT> gentoo.org>

 14.2.0/gentoo/78_all_PR115917-ada-lto.patch | 52 +++++++++++++++++++++++++++++
 14.2.0/gentoo/README.history                |  1 +
 2 files changed, 53 insertions(+)

diff --git a/14.2.0/gentoo/78_all_PR115917-ada-lto.patch b/14.2.0/gentoo/78_all_PR115917-ada-lto.patch
new file mode 100644
index 0000000..f4bac9c
--- /dev/null
+++ b/14.2.0/gentoo/78_all_PR115917-ada-lto.patch
@@ -0,0 +1,52 @@
+From b56e463bd20beca5609dee69837a6b3dfaa542e2 Mon Sep 17 00:00:00 2001
+Message-ID: <b56e463bd20beca5609dee69837a6b3dfaa542e2.1727636544.git.sam@gentoo.org>
+From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= <arsen@aarsen.me>
+Date: Thu, 15 Aug 2024 19:17:41 +0200
+Subject: [PATCH] gnat: fix lto-type-mismatch between C_Version_String and
+ gnat_version_string [PR115917]
+
+gcc/ada/ChangeLog:
+
+	PR ada/115917
+	* gnatvsn.ads: Add note about the duplication of this value in
+	version.c.
+	* version.c (VER_LEN_MAX): Define to the same value as
+	Gnatvsn.Ver_Len_Max.
+	(gnat_version_string): Use VER_LEN_MAX as bound.
+
+(cherry picked from commit 9cbcf8d1de159e6113fafb5dc2feb4a7e467a302)
+---
+ gcc/ada/gnatvsn.ads | 3 ++-
+ gcc/ada/version.c   | 5 ++++-
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/gcc/ada/gnatvsn.ads b/gcc/ada/gnatvsn.ads
+index 29238362cc04..f2082ece0965 100644
+--- a/gcc/ada/gnatvsn.ads
++++ b/gcc/ada/gnatvsn.ads
+@@ -83,7 +83,8 @@ package Gnatvsn is
+    --  space to store any possible version string value for checks. This
+    --  value should never be decreased in the future, but it would be
+    --  OK to increase it if absolutely necessary. If it is increased,
+-   --  be sure to increase GNAT.Compiler.Version.Ver_Len_Max as well.
++   --  be sure to increase GNAT.Compiler.Version.Ver_Len_Max, and to update
++   --  the VER_LEN_MAX define in version.c as well.
+ 
+    Ver_Prefix : constant String := "GNAT Version: ";
+    --  Prefix generated by binder. If it is changed, be sure to change
+diff --git a/gcc/ada/version.c b/gcc/ada/version.c
+index 5e64edd0b17d..2fa9b8c2c859 100644
+--- a/gcc/ada/version.c
++++ b/gcc/ada/version.c
+@@ -31,4 +31,7 @@
+ 
+ #include "version.h"
+ 
+-char gnat_version_string[] = version_string;
++/* Logically a reference to Gnatvsn.Ver_Len_Max.  Please keep in sync.  */
++#define VER_LEN_MAX 256
++
++char gnat_version_string[VER_LEN_MAX] = version_string;
+-- 
+2.46.2
+

diff --git a/14.2.0/gentoo/README.history b/14.2.0/gentoo/README.history
index 8bdcb12..26b4c96 100644
--- a/14.2.0/gentoo/README.history
+++ b/14.2.0/gentoo/README.history
@@ -22,3 +22,4 @@
 	+ 29_all_msgfmt-libstdc++-link.patch
 	+ 30_all_tar_libstdc++-link.patch
 	+ 77_all_m2_docs_sandbox.patch
+	+ 78_all_PR115917-ada-lto.patch


             reply	other threads:[~2024-09-29 19:20 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-29 19:20 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-09  3:42 [gentoo-commits] proj/gcc-patches:master commit in: 14.2.0/gentoo/ Sam James
2025-02-07 21:19 Sam James
2024-12-24 20:48 Sam James
2024-12-10  5:28 Sam James
2024-12-10  5:25 Sam James
2024-12-01 12:47 Sam James
2024-11-30 22:48 Sam James
2024-11-27 15:58 Sam James
2024-11-24 20:18 Sam James
2024-11-02 20:15 Sam James
2024-11-01  8:17 Sam James
2024-11-01  8:17 Sam James
2024-09-29 19:20 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1727636571.badbdc155d678ece9a71c2bd7c4506600aace07c.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox