[openwrt/openwrt] tools: elfutils: fix compilation with GCC15

LEDE Commits lede-commits at lists.infradead.org
Sun Jun 8 12:38:30 PDT 2025


hauke pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/fe37f2e52a16fdc201c27ce2451682a103b63e86

commit fe37f2e52a16fdc201c27ce2451682a103b63e86
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sun May 18 15:09:41 2025 +0200

    tools: elfutils: fix compilation with GCC15
    
    Backport fix from upstream to fix compilation with host GCC 15.
    https://sourceware.org/git/?p=elfutils.git;a=commitdiff_plain;h=7508696d107ca01b65ce8273c881462a8658f90f
    
    Link: https://github.com/openwrt/openwrt/pull/19065
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 ...allocate-enough-stace-for-null-terminator.patch | 63 ++++++++++++++++++++++
 1 file changed, 63 insertions(+)

diff --git a/tools/elfutils/patches/0001-backends-allocate-enough-stace-for-null-terminator.patch b/tools/elfutils/patches/0001-backends-allocate-enough-stace-for-null-terminator.patch
new file mode 100644
index 0000000000..21b1f60203
--- /dev/null
+++ b/tools/elfutils/patches/0001-backends-allocate-enough-stace-for-null-terminator.patch
@@ -0,0 +1,63 @@
+From: Sergei Trofimovich <slyich at gmail.com>
+Date: Wed, 17 Jul 2024 22:03:34 +0000 (+0100)
+Subject: backends: allocate enough stace for null terminator
+X-Git-Tag: elfutils-0.192~64
+X-Git-Url: https://sourceware.org/git/?p=elfutils.git;a=commitdiff_plain;h=7508696d107ca01b65ce8273c881462a8658f90f
+
+backends: allocate enough stace for null terminator
+
+`gcc-15` added a new warning in https://gcc.gnu.org/PR115185:
+
+    i386_regs.c:88:11: error: initializer-string for array of 'char' is too long [-Werror=unterminated-string-initialization]
+       88 |           "ax", "cx", "dx", "bx", "sp", "bp", "si", "di", "ip"
+          |           ^~~~
+
+`elfutils` does not need to store '\0'. We could either initialize the
+arrays with individual bytes or allocate extra byte for null.
+
+This change initializes the array bytewise.
+
+	* backends/i386_regs.c (i386_register_info): Initialize the
+	array bytewise to fix gcc-15 warning.
+	* backends/x86_64_regs.c (x86_64_register_info): Ditto.
+
+Signed-off-by: Sergei Trofimovich <slyich at gmail.com>
+---
+
+--- a/backends/i386_regs.c
++++ b/backends/i386_regs.c
+@@ -85,7 +85,15 @@ i386_register_info (Ebl *ebl __attribute
+     {
+       static const char baseregs[][2] =
+ 	{
+-	  "ax", "cx", "dx", "bx", "sp", "bp", "si", "di", "ip"
++	  {'a', 'x'},
++	  {'c', 'x'},
++	  {'d', 'x'},
++	  {'b', 'x'},
++	  {'s', 'p'},
++	  {'b', 'p'},
++	  {'s', 'i'},
++	  {'d', 'i'},
++	  {'i', 'p'},
+ 	};
+ 
+     case 4:
+--- a/backends/x86_64_regs.c
++++ b/backends/x86_64_regs.c
+@@ -82,7 +82,14 @@ x86_64_register_info (Ebl *ebl __attribu
+     {
+       static const char baseregs[][2] =
+ 	{
+-	  "ax", "dx", "cx", "bx", "si", "di", "bp", "sp"
++	  {'a', 'x'},
++	  {'d', 'x'},
++	  {'c', 'x'},
++	  {'b', 'x'},
++	  {'s', 'i'},
++	  {'d', 'i'},
++	  {'b', 'p'},
++	  {'s', 'p'},
+ 	};
+ 
+     case 6 ... 7:




More information about the lede-commits mailing list