All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joseph Kogut <joseph.kogut@gmail.com>
To: buildroot@buildroot.org
Cc: Adrian Perez de Castro <aperez@igalia.com>,
	 Eric Le Bihan <eric.le.bihan.dev@free.fr>,
	 Romain Naour <romain.naour@gmail.com>,
	 Joseph Kogut <joseph.kogut@gmail.com>
Subject: [Buildroot] [PATCH RESEND v5 3/5] package/virglrenderer: Fix build with glibc 2.43
Date: Tue, 12 May 2026 12:36:32 -0700	[thread overview]
Message-ID: <20260512-virglrenderer-v5-3-1806e588eb59@gmail.com> (raw)
In-Reply-To: <20260512-virglrenderer-v5-0-1806e588eb59@gmail.com>

Add an upstream patch to fix the build with glibc 2.43, not present in a
stable release yet.

Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
---
 .../0001-fix-build-with-glibc-2.43.patch           | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/package/virglrenderer/0001-fix-build-with-glibc-2.43.patch b/package/virglrenderer/0001-fix-build-with-glibc-2.43.patch
new file mode 100644
index 0000000000..fda1d9b218
--- /dev/null
+++ b/package/virglrenderer/0001-fix-build-with-glibc-2.43.patch
@@ -0,0 +1,39 @@
+From 986b5fc57b07c06b5e0b3a3694d06898ebc80163 Mon Sep 17 00:00:00 2001
+From: Maximilian Hofmann <maxi@maxiicodes.dev>
+Date: Thu, 26 Feb 2026 23:28:58 +0100
+Subject: [PATCH] fix: build with glibc 2.43
+
+Several glibc functions now return a const pointer if the input is a
+const pointer and a non-const pointer if the input is non-const, causing
+a build failure.
+
+Fix this by declaring the output pointers as const if they are never
+modified, and for the lone failure where the output is modified, instead
+make the input non-const.
+
+Signed-off-by: Maximilian Hofmann <maxi@maxiicodes.dev>
+Part-of: <https://gitlab.freedesktop.org/virgl/virglrenderer/-/merge_requests/1599>
+
+Upstream: https://gitlab.freedesktop.org/virgl/virglrenderer/-/commit/986b5fc57b07c06b5e0b3a3694d06898ebc80163
+
+Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
+---
+ src/gallium/auxiliary/tgsi/tgsi_text.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c b/src/gallium/auxiliary/tgsi/tgsi_text.c
+index db7d7b95..7e37bf79 100644
+--- a/src/gallium/auxiliary/tgsi/tgsi_text.c
++++ b/src/gallium/auxiliary/tgsi/tgsi_text.c
+@@ -84,7 +84,7 @@ streq_nocase_uprcase(const char *str1,
+ static inline bool skip_n_chars(const char **pcur,
+                                    int n)
+ {
+-   char* str = memchr(*pcur, '\0', n);
++   const char* str = memchr(*pcur, '\0', n);
+    if (unlikely(str)) {
+       *pcur = str;
+       return false;
+-- 
+2.53.0
+

-- 
2.54.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  parent reply	other threads:[~2026-05-12 19:37 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-12 19:36 [Buildroot] [PATCH RESEND v5 0/5] Add virglrenderer support Joseph Kogut
2026-05-12 19:36 ` [Buildroot] [PATCH RESEND v5 1/5] package/libepoxy: remove gl/egl dependency Joseph Kogut
2026-05-13 15:35   ` Romain Naour via buildroot
2026-05-13 18:35     ` Joseph Kogut
2026-05-13 21:13       ` Romain Naour via buildroot
2026-05-13 21:28         ` Joseph Kogut
2026-05-12 19:36 ` [Buildroot] [PATCH RESEND v5 2/5] package/virglrenderer: new package Joseph Kogut
2026-05-12 19:36 ` Joseph Kogut [this message]
2026-05-12 19:36 ` [Buildroot] [PATCH RESEND v5 4/5] package/qemu: add OpenGL config Joseph Kogut
2026-05-13 17:13   ` Romain Naour via buildroot
2026-05-12 19:36 ` [Buildroot] [PATCH RESEND v5 5/5] package/qemu: add virglrenderer support Joseph Kogut
2026-05-13 17:17   ` Romain Naour via buildroot
2026-05-13 18:06     ` Romain Naour via buildroot
2026-05-13 18:16     ` Joseph Kogut
2026-05-13 21:04       ` Romain Naour via buildroot
2026-05-13 22:09         ` Joseph Kogut
2026-05-14 12:10           ` Romain Naour via buildroot
2026-05-14 18:05             ` Joseph Kogut
2026-05-14 18:38               ` Romain Naour via buildroot
2026-05-14 19:38                 ` Joseph Kogut

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=20260512-virglrenderer-v5-3-1806e588eb59@gmail.com \
    --to=joseph.kogut@gmail.com \
    --cc=aperez@igalia.com \
    --cc=buildroot@buildroot.org \
    --cc=eric.le.bihan.dev@free.fr \
    --cc=romain.naour@gmail.com \
    /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 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.