Title: [289199] trunk/Source
- Revision
- 289199
- Author
- [email protected]
- Date
- 2022-02-06 21:29:35 -0800 (Sun, 06 Feb 2022)
Log Message
Unreviewed, non-unified build fixes
https://bugs.webkit.org/show_bug.cgi?id=236216
Source/_javascript_Core:
This missing include was causing non-unified builds to fail linking
libWPEWebkit with undefined JSC::Structure::get(...) after dropping
gold as the default linker in 246713@main.
* wasm/js/JSWebAssemblyException.cpp:
Source/WebCore:
* layout/formattingContexts/inline/InlineLineBoxVerticalAligner.h:
* workers/shared/context/SharedWorkerThread.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (289198 => 289199)
--- trunk/Source/_javascript_Core/ChangeLog 2022-02-07 05:02:39 UTC (rev 289198)
+++ trunk/Source/_javascript_Core/ChangeLog 2022-02-07 05:29:35 UTC (rev 289199)
@@ -1,3 +1,14 @@
+2022-02-06 Lauro Moura <[email protected]>
+
+ Unreviewed, non-unified build fixes
+ https://bugs.webkit.org/show_bug.cgi?id=236216
+
+ This missing include was causing non-unified builds to fail linking
+ libWPEWebkit with undefined JSC::Structure::get(...) after dropping
+ gold as the default linker in 246713@main.
+
+ * wasm/js/JSWebAssemblyException.cpp:
+
2022-02-06 Yusuke Suzuki <[email protected]>
[Wasm] ref.null check should be done first in B3 call_ref
Modified: trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.cpp (289198 => 289199)
--- trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.cpp 2022-02-07 05:02:39 UTC (rev 289198)
+++ trunk/Source/_javascript_Core/wasm/js/JSWebAssemblyException.cpp 2022-02-07 05:29:35 UTC (rev 289199)
@@ -33,6 +33,7 @@
#include "JSCJSValueInlines.h"
#include "JSCellInlines.h"
#include "JSWebAssemblyHelpers.h"
+#include "StructureInlines.h"
namespace JSC {
Modified: trunk/Source/WebCore/ChangeLog (289198 => 289199)
--- trunk/Source/WebCore/ChangeLog 2022-02-07 05:02:39 UTC (rev 289198)
+++ trunk/Source/WebCore/ChangeLog 2022-02-07 05:29:35 UTC (rev 289199)
@@ -1,3 +1,11 @@
+2022-02-06 Lauro Moura <[email protected]>
+
+ Unreviewed, non-unified build fixes
+ https://bugs.webkit.org/show_bug.cgi?id=236216
+
+ * layout/formattingContexts/inline/InlineLineBoxVerticalAligner.h:
+ * workers/shared/context/SharedWorkerThread.cpp:
+
2022-02-06 Alan Bujtas <[email protected]>
Address a post-commit review comment after r289171.
Modified: trunk/Source/WebCore/layout/formattingContexts/inline/InlineLineBoxVerticalAligner.h (289198 => 289199)
--- trunk/Source/WebCore/layout/formattingContexts/inline/InlineLineBoxVerticalAligner.h 2022-02-07 05:02:39 UTC (rev 289198)
+++ trunk/Source/WebCore/layout/formattingContexts/inline/InlineLineBoxVerticalAligner.h 2022-02-07 05:29:35 UTC (rev 289199)
@@ -27,6 +27,7 @@
#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
+#include "InlineFormattingContext.h"
#include "InlineFormattingGeometry.h"
namespace WebCore {
Modified: trunk/Source/WebCore/workers/shared/context/SharedWorkerThread.cpp (289198 => 289199)
--- trunk/Source/WebCore/workers/shared/context/SharedWorkerThread.cpp 2022-02-07 05:02:39 UTC (rev 289198)
+++ trunk/Source/WebCore/workers/shared/context/SharedWorkerThread.cpp 2022-02-07 05:29:35 UTC (rev 289199)
@@ -26,6 +26,7 @@
#include "config.h"
#include "SharedWorkerThread.h"
+#include "Logging.h"
#include "SharedWorkerGlobalScope.h"
#include "WorkerObjectProxy.h"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes