public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
From: Steve Sakoman <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][scarthgap 09/22] libunwind: ignore various issues now fatal with gcc-14
Date: Mon, 17 Jun 2024 05:04:47 -0700	[thread overview]
Message-ID: <dface38338ccaa45b2d1202e62adc87d99c3fb49.1718625680.git.steve@sakoman.com> (raw)
In-Reply-To: <cover.1718625680.git.steve@sakoman.com>

From: Martin Jansa <martin.jansa@gmail.com>

http://gecko.lge.com:8000/Errors/Details/821679
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 20b9e9980c6675906ed154df968008f8c9140a9c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
 meta/recipes-support/libunwind/libunwind_1.6.2.bb | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/meta/recipes-support/libunwind/libunwind_1.6.2.bb b/meta/recipes-support/libunwind/libunwind_1.6.2.bb
index 3208785124..c7b1604b61 100644
--- a/meta/recipes-support/libunwind/libunwind_1.6.2.bb
+++ b/meta/recipes-support/libunwind/libunwind_1.6.2.bb
@@ -40,3 +40,11 @@ do_install:append () {
 }
 
 BBCLASSEXTEND = "native"
+
+# http://errors.yoctoproject.org/Errors/Build/183144/
+# libunwind-1.6.2/include/tdep-aarch64/libunwind_i.h:123:47: error: passing argument 1 of '_ULaarch64_uc_addr' from incompatible pointer type [-Wincompatible-pointer-types]
+# libunwind-1.6.2/src/aarch64/Ginit.c:348:28: error: initialization of 'unw_tdep_context_t *' from incompatible pointer type 'ucontext_t *' [-Wincompatible-pointer-types]
+# libunwind-1.6.2/src/aarch64/Ginit.c:377:28: error: initialization of 'unw_tdep_context_t *' from incompatible pointer type 'ucontext_t *' [-Wincompatible-pointer-types]
+# libunwind-1.6.2/src/aarch64/Ginit_local.c:51:9: error: assignment to 'ucontext_t *' from incompatible pointer type 'unw_context_t *' {aka 'unw_tdep_context_t *'} [-Wincompatible-pointer-types]
+# libunwind-1.6.2/src/aarch64/Gresume.c:37:28: error: initialization of 'unw_tdep_context_t *' from incompatible pointer type 'ucontext_t *' [-Wincompatible-pointer-types]
+CFLAGS += "-Wno-error=incompatible-pointer-types"
-- 
2.34.1



  parent reply	other threads:[~2024-06-17 12:05 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-17 12:04 [OE-core][scarthgap 00/22] Patch review Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 01/22] yocto-uninative: Update to 4.5 for gcc 14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 02/22] oeqa/sdkext/devtool: replace use of librdfa Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 03/22] oeqa/sdk/assimp: Upgrade and fix for gcc 14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 04/22] gcc-runtime: libgomp fix for gcc 14 warnings with mandb selftest Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 05/22] gawk: fix readline detection Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 06/22] cdrtools-native: Fix build with GCC 14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 07/22] appstream: upgrade 1.0.2 -> 1.0.3 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 08/22] expect: ignore various issues now fatal with gcc-14 Steve Sakoman
2024-06-17 12:04 ` Steve Sakoman [this message]
2024-06-17 12:04 ` [OE-core][scarthgap 10/22] p11-kit: ignore various issues fatal with gcc-14 (for 32bit MACHINEs) Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 11/22] kea: Remove -fvisibility-inlines-hidden from C++ flags Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 12/22] consolekit: Disable incompatible-pointer-types warning as error Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 13/22] gtk4: Disable int-conversion " Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 14/22] lrzsz connman-gnome libfm: ignore various issues fatal with gcc-14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 15/22] ltp: Fix build with GCC-14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 16/22] iproute2: " Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 17/22] zip: Fix build with gcc-14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 18/22] cdrtools-native: fix " Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 19/22] kexec-tools: Fix build with GCC-14 on musl Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 20/22] db: ignore implicit-int and implicit-function-declaration issues fatal with gcc-14 Steve Sakoman
2024-06-17 12:04 ` [OE-core][scarthgap 21/22] expect-native: fix build " Steve Sakoman
2024-06-17 12:05 ` [OE-core][scarthgap 22/22] cups: Upgrade 2.4.7 -> 2.4.9 Steve Sakoman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=dface38338ccaa45b2d1202e62adc87d99c3fb49.1718625680.git.steve@sakoman.com \
    --to=steve@sakoman.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox