Title: [280866] trunk/Source/WTF
Revision
280866
Author
[email protected]
Date
2021-08-10 14:53:12 -0700 (Tue, 10 Aug 2021)

Log Message

[WTF][PlayStation] REGRESSION(r280795) error: undefined symbol: WTF::logLevelString()
https://bugs.webkit.org/show_bug.cgi?id=228959

Reviewed by Fujii Hironori.

As per followup win fix, for declspec platforms, LoggingUnix needs
to include LogInitialization to get the export declaration.

* wtf/unix/LoggingUnix.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (280865 => 280866)


--- trunk/Source/WTF/ChangeLog	2021-08-10 21:37:20 UTC (rev 280865)
+++ trunk/Source/WTF/ChangeLog	2021-08-10 21:53:12 UTC (rev 280866)
@@ -1,3 +1,15 @@
+2021-08-10  Stephan Szabo  <[email protected]>
+
+        [WTF][PlayStation] REGRESSION(r280795) error: undefined symbol: WTF::logLevelString()
+        https://bugs.webkit.org/show_bug.cgi?id=228959
+
+        Reviewed by Fujii Hironori.
+
+        As per followup win fix, for declspec platforms, LoggingUnix needs
+        to include LogInitialization to get the export declaration.
+
+        * wtf/unix/LoggingUnix.cpp:
+
 2021-08-10  Keith Miller  <[email protected]>
 
         CallFrame::returnPC should untag the return address before passing it to ReturnAddressPtr

Modified: trunk/Source/WTF/wtf/unix/LoggingUnix.cpp (280865 => 280866)


--- trunk/Source/WTF/wtf/unix/LoggingUnix.cpp	2021-08-10 21:37:20 UTC (rev 280865)
+++ trunk/Source/WTF/wtf/unix/LoggingUnix.cpp	2021-08-10 21:53:12 UTC (rev 280866)
@@ -24,6 +24,7 @@
 
 #if !LOG_DISABLED || !RELEASE_LOG_DISABLED
 
+#include "LogInitialization.h"
 #include <string.h>
 #include <wtf/text/WTFString.h>
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to