From 8428bce4545ff8e59ca4a96881003f43ae60b446 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 30 May 2024 08:11:41 +0100 Subject: qemu: Disable incompatible-pointer-types warning as error on mingw GCC-14 promoted this warning into error by default but code does not build cleanly and now this warning becomes a hard error. Work around it for now. Signed-off-by: Richard Purdie --- recipes-devtools/qemu/qemu_%.bbappend | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 recipes-devtools/qemu/qemu_%.bbappend diff --git a/recipes-devtools/qemu/qemu_%.bbappend b/recipes-devtools/qemu/qemu_%.bbappend new file mode 100644 index 0000000..3aae4b6 --- /dev/null +++ b/recipes-devtools/qemu/qemu_%.bbappend @@ -0,0 +1,3 @@ +# GCC-14 treats this warning as error which results in +# build failures +CFLAGS:append:mingw32 = " -Wno-error=incompatible-pointer-types" -- cgit v1.2.3-54-g00ecf