Title: [286511] trunk/Source/WebCore
Revision
286511
Author
mmaxfi...@apple.com
Date
2021-12-03 12:37:13 -0800 (Fri, 03 Dec 2021)

Log Message

Fix internal Apple builds

Unreviewed.

Turns out -weak_framework works if the framework isn't present at runtime, but
still requires the framework to be present at build time.

No new tests because there is no behavior change.

* Configurations/WebCore.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (286510 => 286511)


--- trunk/Source/WebCore/ChangeLog	2021-12-03 20:29:26 UTC (rev 286510)
+++ trunk/Source/WebCore/ChangeLog	2021-12-03 20:37:13 UTC (rev 286511)
@@ -1,3 +1,16 @@
+2021-12-03  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        Fix internal Apple builds
+
+        Unreviewed.
+
+        Turns out -weak_framework works if the framework isn't present at runtime, but
+        still requires the framework to be present at build time.
+
+        No new tests because there is no behavior change.
+
+        * Configurations/WebCore.xcconfig:
+
 2021-12-03  Sihui Liu  <sihui_...@apple.com>
 
         Fetch and remove file system data via WKWebsiteDataStore

Modified: trunk/Source/WebCore/Configurations/WebCore.xcconfig (286510 => 286511)


--- trunk/Source/WebCore/Configurations/WebCore.xcconfig	2021-12-03 20:29:26 UTC (rev 286510)
+++ trunk/Source/WebCore/Configurations/WebCore.xcconfig	2021-12-03 20:37:13 UTC (rev 286511)
@@ -73,7 +73,7 @@
 
 WK_ANGLE_LDFLAGS = -weak-lANGLE-shared;
 
-WK_WEBGPU_LDFLAGS = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS = ; // To be filled-in after Apple update its internal build system.
 
 WK_APPKIT_LDFLAGS = $(WK_APPKIT_LDFLAGS_$(WK_PLATFORM_NAME));
 WK_APPKIT_LDFLAGS_macosx = -framework AppKit;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to