summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Volk <f_l_k@t-online.de>2026-06-09 17:07:28 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-06-12 07:19:25 -0700
commit9e45d712f2b9a9df0402889af501e5a3a1851220 (patch)
treec3bc5248093b0ac7f68c4a2648b833e5bdbbbd50
parent47ab5b9a8d28f1b6ee236d451273ab93a4f128a0 (diff)
downloadmeta-openembedded-9e45d712f2b9a9df0402889af501e5a3a1851220.tar.gz
gd: disable maybe-uninitialized error
This fixes build with gcc16 until a suitable solution is found: https://github.com/libgd/libgd/issues/990 Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-support/gd/gd_2.3.3.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/gd/gd_2.3.3.bb b/meta-oe/recipes-support/gd/gd_2.3.3.bb
index 062c4b4a8f..884a2b54ac 100644
--- a/meta-oe/recipes-support/gd/gd_2.3.3.bb
+++ b/meta-oe/recipes-support/gd/gd_2.3.3.bb
@@ -43,6 +43,8 @@ EXTRA_OECONF += "--disable-rpath"
43 43
44EXTRA_OEMAKE = 'LDFLAGS="${LDFLAGS}"' 44EXTRA_OEMAKE = 'LDFLAGS="${LDFLAGS}"'
45 45
46CFLAGS += "-Wno-error=maybe-uninitialized"
47
46DEBUG_OPTIMIZATION:append = " -Wno-error=maybe-uninitialized" 48DEBUG_OPTIMIZATION:append = " -Wno-error=maybe-uninitialized"
47 49
48do_install:append:class-target() { 50do_install:append:class-target() {