69 lines
2.5 KiB
Diff
69 lines
2.5 KiB
Diff
Source: https://git.alpinelinux.org/aports/plain/community/chromium/no-execinfo.patch
|
|
musl does not have execinfo.h, and hence no implementation of
|
|
. backtrace()
|
|
. backtrace_symbols()
|
|
for discussion about this, see https://www.openwall.com/lists/musl/2021/07/16/1
|
|
--
|
|
--- a/src/3rdparty/chromium/v8/src/codegen/external-reference-table.cc
|
|
+++ b/src/3rdparty/chromium/v8/src/codegen/external-reference-table.cc
|
|
@@ -12,7 +12,9 @@
|
|
|
|
#if defined(DEBUG) && defined(V8_OS_LINUX) && !defined(V8_OS_ANDROID)
|
|
#define SYMBOLIZE_FUNCTION
|
|
+#if defined(__GLIBC__)
|
|
#include <execinfo.h>
|
|
+#endif
|
|
|
|
#include <vector>
|
|
|
|
@@ -118,7 +120,7 @@ void ExternalReferenceTable::Init(Isolat
|
|
}
|
|
|
|
const char* ExternalReferenceTable::ResolveSymbol(void* address) {
|
|
-#ifdef SYMBOLIZE_FUNCTION
|
|
+#if defined(SYMBOLIZE_FUNCTION) && defined(__GLIBC__)
|
|
char** names = backtrace_symbols(&address, 1);
|
|
const char* name = names[0];
|
|
// The array of names is malloc'ed. However, each name string is static
|
|
--- a/src/3rdparty/chromium/base/debug/stack_trace.cc
|
|
+++ b/src/3rdparty/chromium/base/debug/stack_trace.cc
|
|
@@ -273,7 +273,9 @@ void StackTrace::Print() const {
|
|
}
|
|
|
|
void StackTrace::OutputToStream(std::ostream* os) const {
|
|
+#if defined(__GLIBC__) && !defined(_AIX)
|
|
OutputToStreamWithPrefix(os, nullptr);
|
|
+#endif
|
|
}
|
|
|
|
std::string StackTrace::ToString() const {
|
|
@@ -281,7 +283,7 @@ std::string StackTrace::ToString() const
|
|
}
|
|
std::string StackTrace::ToStringWithPrefix(const char* prefix_string) const {
|
|
std::stringstream stream;
|
|
-#if !defined(__UCLIBC__) && !defined(_AIX)
|
|
+#if defined(__GLIBC__) && !defined(_AIX)
|
|
OutputToStreamWithPrefix(&stream, prefix_string);
|
|
#endif
|
|
return stream.str();
|
|
--- a/src/3rdparty/chromium/base/debug/stack_trace_unittest.cc
|
|
+++ b/src/3rdparty/chromium/base/debug/stack_trace_unittest.cc
|
|
@@ -33,7 +33,7 @@ typedef MultiProcessTest StackTraceTest;
|
|
typedef testing::Test StackTraceTest;
|
|
#endif
|
|
|
|
-#if !defined(__UCLIBC__) && !defined(_AIX)
|
|
+#if !defined(__UCLIBC__) && !defined(_AIX) && defined(__GLIBC__)
|
|
// StackTrace::OutputToStream() is not implemented under uclibc, nor AIX.
|
|
// See https://crbug.com/706728
|
|
|
|
@@ -156,7 +156,7 @@ TEST_F(StackTraceTest, DebugOutputToStre
|
|
|
|
#endif // !defined(__UCLIBC__) && !defined(_AIX)
|
|
|
|
-#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_ANDROID)
|
|
+#if (BUILDFLAG(IS_POSIX) && defined(__GLIBC__)) && !BUILDFLAG(IS_ANDROID)
|
|
#if !BUILDFLAG(IS_IOS)
|
|
static char* newArray() {
|
|
// Clang warns about the mismatched new[]/delete if they occur in the same
|