Index: Source/wtf/Assertions.cpp |
diff --git a/Source/wtf/Assertions.cpp b/Source/wtf/Assertions.cpp |
index 79b969e248f2a02ab9233c53ca41a6b2d7aa0b30..67c0675af4e072324b121b0f296390474df8da4c 100644 |
--- a/Source/wtf/Assertions.cpp |
+++ b/Source/wtf/Assertions.cpp |
@@ -267,7 +267,7 @@ void WTFPrintBacktrace(void** stack, int size) |
for (int i = 0; i < size; ++i) { |
const char* mangledName = 0; |
char* cxaDemangled = 0; |
-#if OS(MACOSX) || OS(LINUX) |
+#if OS(MACOSX) || (OS(LINUX) && !defined(__UCLIBC__)) |
Dl_info info; |
if (dladdr(stack[i], &info) && info.dli_sname) |
mangledName = info.dli_sname; |