Title: [257458] releases/WebKitGTK/webkit-2.28/Source/WTF
Revision
257458
Author
[email protected]
Date
2020-02-26 02:58:20 -0800 (Wed, 26 Feb 2020)

Log Message

Merge r257304 - [WPE] Enable BACKTRACE_SYMBOLS
https://bugs.webkit.org/show_bug.cgi?id=208187

Reviewed by Žan Doberšek.

* wtf/PlatformHave.h: Enable backtrace_symbols, to be combined
with dladdr() the stacktrace dumps will be improved.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog (257457 => 257458)


--- releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog	2020-02-26 10:58:16 UTC (rev 257457)
+++ releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog	2020-02-26 10:58:20 UTC (rev 257458)
@@ -1,5 +1,15 @@
 2020-02-25  Philippe Normand  <[email protected]>
 
+        [WPE] Enable BACKTRACE_SYMBOLS
+        https://bugs.webkit.org/show_bug.cgi?id=208187
+
+        Reviewed by Žan Doberšek.
+
+        * wtf/PlatformHave.h: Enable backtrace_symbols, to be combined
+        with dladdr() the stacktrace dumps will be improved.
+
+2020-02-25  Philippe Normand  <[email protected]>
+
         [Linux] StackTrace symbols are not demangled
         https://bugs.webkit.org/show_bug.cgi?id=207933
 

Modified: releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/PlatformHave.h (257457 => 257458)


--- releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/PlatformHave.h	2020-02-26 10:58:16 UTC (rev 257457)
+++ releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/PlatformHave.h	2020-02-26 10:58:20 UTC (rev 257458)
@@ -230,7 +230,7 @@
 #define HAVE_BACKTRACE 1
 #endif
 
-#if (OS(DARWIN) || OS(LINUX)) && PLATFORM(GTK) && defined(__GLIBC__) && !defined(__UCLIBC__) && !CPU(MIPS)
+#if (OS(DARWIN) || OS(LINUX)) && (PLATFORM(GTK) || PLATFORM(WPE)) && defined(__GLIBC__) && !defined(__UCLIBC__) && !CPU(MIPS)
 #define HAVE_BACKTRACE_SYMBOLS 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to