Chromium Code Reviews| Index: Source/wtf/Assertions.cpp |
| diff --git a/Source/wtf/Assertions.cpp b/Source/wtf/Assertions.cpp |
| index 79b969e248f2a02ab9233c53ca41a6b2d7aa0b30..853e108f39175836fcd2c8556df724038c67b8ec 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__) |
|
jochen (gone - plz use gerrit)
2014/04/08 07:51:04
can you use brackets to make the condition clear?
Mostyn Bramley-Moore
2014/04/08 07:56:38
Done.
|
| Dl_info info; |
| if (dladdr(stack[i], &info) && info.dli_sname) |
| mangledName = info.dli_sname; |