From e0c92af6830b45010ab7a2ace411a0623ce18f04 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 24 May 2024 08:27:43 +0200 Subject: dev86: ignore various issues fatal with gcc-14 work arounds for: meta-virtualization/recipes-extended/dev86/dev86_git.bb:do_install http://errors.yoctoproject.org/Errors/Build/183127/ Signed-off-by: Martin Jansa Signed-off-by: Bruce Ashfield --- recipes-extended/dev86/dev86_git.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/recipes-extended/dev86/dev86_git.bb b/recipes-extended/dev86/dev86_git.bb index a3d0fded..5adf2826 100644 --- a/recipes-extended/dev86/dev86_git.bb +++ b/recipes-extended/dev86/dev86_git.bb @@ -41,3 +41,20 @@ do_install() { } FILES:${PN} += "${libdir}/bcc" + +# http://gecko.lge.com:8000/Errors/Details/832862 +# http://errors.yoctoproject.org/Errors/Details/766930/ +# cpp.c:548:1: error: type of 'ch' defaults to 'int' [-Wimplicit-int] +# strsave.c:47:42: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] +# strsave.c:55:26: error: implicit declaration of function 'hash' [-Wimplicit-function-declaration] +# strsave.c:66:32: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] +# symbol.c:60:42: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] +# symbol.c:72:30: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] +# symbol.c:77:13: error: implicit declaration of function 'hash' [-Wimplicit-function-declaration] +# tok_class.c:305:43: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] +# tok_io.c:219:20: error: implicit declaration of function 'atoi' [-Wimplicit-function-declaration] +# tok_io.c:488:20: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] +# unproto.c:188:51: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] +CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" + +EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'" -- cgit v1.2.3-54-g00ecf