mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
68da3901c9
backtrace is glibc only feature on linux so check for glibc before using it Clangs clear_cache has different signature than gcc provided builtin make it compatible for both (From OE-Core rev: c3dc346d44c8c5485b3eb1a97f32ba2ed2e76ece) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From 0b68ad206d2d90df78d91cad4da19152084014cf Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Wed, 16 Sep 2015 05:15:04 +0000
|
|
Subject: [PATCH] Enable backtrace on linux when using glibc
|
|
|
|
We dont have backtrace() implemented on non-glibc libc's on linux
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
Upstream-Status: Accepted
|
|
|
|
Source/WTF/wtf/Assertions.cpp | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Source/WTF/wtf/Assertions.cpp b/Source/WTF/wtf/Assertions.cpp
|
|
index 191d53f..a4d86b5 100644
|
|
--- a/Source/WTF/wtf/Assertions.cpp
|
|
+++ b/Source/WTF/wtf/Assertions.cpp
|
|
@@ -68,7 +68,7 @@
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
-#if OS(DARWIN) || (OS(LINUX) && !defined(__UCLIBC__))
|
|
+#if OS(DARWIN) || (OS(LINUX) && defined(__GLIBC__) && !defined(__UCLIBC__))
|
|
#include <cxxabi.h>
|
|
#include <dlfcn.h>
|
|
#include <execinfo.h>
|
|
@@ -225,7 +225,7 @@ void WTFReportArgumentAssertionFailure(const char* file, int line, const char* f
|
|
|
|
void WTFGetBacktrace(void** stack, int* size)
|
|
{
|
|
-#if OS(DARWIN) || (OS(LINUX) && !defined(__UCLIBC__))
|
|
+#if OS(DARWIN) || (OS(LINUX) && defined(__GLIBC__) && !defined(__UCLIBC__))
|
|
*size = backtrace(stack, *size);
|
|
#elif OS(WINDOWS)
|
|
// The CaptureStackBackTrace function is available in XP, but it is not defined
|
|
--
|
|
2.5.2
|
|
|