qtwebengine: Suppress GCC 14 error [YOCIMX-8398]

Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
This commit is contained in:
Tom Hochstein 2024-11-05 14:42:33 -06:00
parent 227c90f98a
commit 0139c46500
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
Upstream-Status: Inappropriate [workaround]
Index: 3rdparty/chromium/build/config/compiler/BUILD.gn
===================================================================
--- 3rdparty.orig/chromium/build/config/compiler/BUILD.gn
+++ 3rdparty/chromium/build/config/compiler/BUILD.gn
@@ -453,6 +453,7 @@ config("compiler") {
cflags_cc += [
"-Wno-deprecated-copy",
"-Wno-expansion-to-defined",
+ "-Wno-error=implicit-function-declaration",
]
}
}

View File

@ -5,5 +5,6 @@ DEPENDS += " \
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://0001-Disable-Intel-backend-by-default.patch;patchdir=src/3rdparty"
SRC_URI += "file://0002-minigbm-Suppress-gcc-14-errors.patch;patchdir=src/3rdparty"
CFLAGS += "-Wno-error=implicit-function-declaration"