diff options
Diffstat (limited to 'community/chromium/musl-hacks.patch')
-rw-r--r-- | community/chromium/musl-hacks.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/community/chromium/musl-hacks.patch b/community/chromium/musl-hacks.patch new file mode 100644 index 0000000000..91706ef2ef --- /dev/null +++ b/community/chromium/musl-hacks.patch @@ -0,0 +1,11 @@ +--- ./base/debug/stack_trace.cc.orig ++++ ./base/debug/stack_trace.cc +@@ -33,7 +33,7 @@ + + std::string StackTrace::ToString() const { + std::stringstream stream; +-#if !defined(__UCLIBC__) ++#if defined(__GLIBC__) + OutputToStream(&stream); + #endif + return stream.str(); |