30 lines
1.2 KiB
Text
30 lines
1.2 KiB
Text
Index: base/debug/stack_trace.cc
|
|
--- base/debug/stack_trace.cc.orig
|
|
+++ base/debug/stack_trace.cc
|
|
@@ -247,7 +247,7 @@ bool StackTrace::WillSymbolizeToStreamForTesting() {
|
|
// Symbols are not expected to be reliable when gn args specifies
|
|
// symbol_level=0.
|
|
return false;
|
|
-#elif defined(__UCLIBC__) || defined(_AIX)
|
|
+#elif defined(__UCLIBC__) || defined(_AIX) || BUILDFLAG(IS_BSD)
|
|
// StackTrace::OutputToStream() is not implemented under uclibc, nor AIX.
|
|
// See https://crbug.com/706728
|
|
return false;
|
|
@@ -291,7 +291,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(__UCLIBC__) && !defined(_AIX) && !BUILDFLAG(IS_BSD)
|
|
if (ShouldSuppressOutput()) {
|
|
return "Backtrace suppressed.";
|
|
}
|
|
@@ -301,7 +301,7 @@ std::string StackTrace::ToStringWithPrefix(const char*
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, const StackTrace& s) {
|
|
-#if !defined(__UCLIBC__) && !defined(_AIX)
|
|
+#if !defined(__UCLIBC__) && !defined(_AIX) && !BUILDFLAG(IS_BSD)
|
|
s.OutputToStream(&os);
|
|
#else
|
|
os << "StackTrace::OutputToStream not implemented.";
|