- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From 9aae71c6ee73431d2609be0ef74ffd4b22b36c75 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 22 Sep 2023 22:59:56 +0000
|
|
Subject: [PATCH] Musl does not have stack unwinder like glibc therefore we can
|
|
not assume that its always available on musl, we do need to check for target
|
|
environment as well which could be musl or glibc.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
mozglue/misc/StackWalk.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/mozglue/misc/StackWalk.cpp b/mozglue/misc/StackWalk.cpp
|
|
index 307715b170..a8d3cb40c0 100644
|
|
--- a/mozglue/misc/StackWalk.cpp
|
|
+++ b/mozglue/misc/StackWalk.cpp
|
|
@@ -43,7 +43,7 @@ using namespace mozilla;
|
|
# define MOZ_STACKWALK_SUPPORTS_MACOSX 0
|
|
#endif
|
|
|
|
-#if (defined(linux) && \
|
|
+#if (defined(linux) && defined(__GLIBC__) && \
|
|
((defined(__GNUC__) && (defined(__i386) || defined(PPC))) || \
|
|
defined(HAVE__UNWIND_BACKTRACE)))
|
|
# define MOZ_STACKWALK_SUPPORTS_LINUX 1
|