diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2024-05-24 08:27:43 +0200 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-29 13:23:41 +0000 |
| commit | e0c92af6830b45010ab7a2ace411a0623ce18f04 (patch) | |
| tree | 3a923ec16e2b4bf83ed7ab2b1ebc57157cf14c95 | |
| parent | 73a3374eb410cc6f1b896f9f15db55287b1cecbb (diff) | |
| download | meta-virtualization-e0c92af6830b45010ab7a2ace411a0623ce18f04.tar.gz | |
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 <martin.jansa@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
| -rw-r--r-- | recipes-extended/dev86/dev86_git.bb | 17 |
1 files changed, 17 insertions, 0 deletions
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() { | |||
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | FILES:${PN} += "${libdir}/bcc" | 43 | FILES:${PN} += "${libdir}/bcc" |
| 44 | |||
| 45 | # http://gecko.lge.com:8000/Errors/Details/832862 | ||
| 46 | # http://errors.yoctoproject.org/Errors/Details/766930/ | ||
| 47 | # cpp.c:548:1: error: type of 'ch' defaults to 'int' [-Wimplicit-int] | ||
| 48 | # strsave.c:47:42: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] | ||
| 49 | # strsave.c:55:26: error: implicit declaration of function 'hash' [-Wimplicit-function-declaration] | ||
| 50 | # strsave.c:66:32: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
| 51 | # symbol.c:60:42: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] | ||
| 52 | # symbol.c:72:30: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
| 53 | # symbol.c:77:13: error: implicit declaration of function 'hash' [-Wimplicit-function-declaration] | ||
| 54 | # tok_class.c:305:43: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
| 55 | # tok_io.c:219:20: error: implicit declaration of function 'atoi' [-Wimplicit-function-declaration] | ||
| 56 | # tok_io.c:488:20: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
| 57 | # unproto.c:188:51: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] | ||
| 58 | CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | ||
| 59 | |||
| 60 | EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'" | ||
