Title: [287082] trunk/Source/ThirdParty/ANGLE
Revision
287082
Author
d...@apple.com
Date
2021-12-15 10:08:42 -0800 (Wed, 15 Dec 2021)

Log Message

[ANGLE] clang with -Wunknown-warning-option will fail on -Wweak-template-vtables
https://bugs.webkit.org/show_bug.cgi?id=233837
<rdar://problem/86335819>

Reviewed by Antoine Quint.

Turn off unknown-warning-option on Apple builds. This shouldn't need to be
upstreamed - the Xcode configurations for ANGLE are specific to WebKit.

* Configurations/Base.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (287081 => 287082)


--- trunk/Source/ThirdParty/ANGLE/ChangeLog	2021-12-15 18:03:57 UTC (rev 287081)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog	2021-12-15 18:08:42 UTC (rev 287082)
@@ -1,3 +1,16 @@
+2021-12-15  Dean Jackson  <d...@apple.com>
+
+        [ANGLE] clang with -Wunknown-warning-option will fail on -Wweak-template-vtables
+        https://bugs.webkit.org/show_bug.cgi?id=233837
+        <rdar://problem/86335819>
+
+        Reviewed by Antoine Quint.
+
+        Turn off unknown-warning-option on Apple builds. This shouldn't need to be
+        upstreamed - the Xcode configurations for ANGLE are specific to WebKit.
+
+        * Configurations/Base.xcconfig:
+
 2021-12-15  Chris Lord  <cl...@igalia.com>
 
         [GTK] Use libgbm and the ANGLE gbm backend to fix initialisation

Modified: trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig (287081 => 287082)


--- trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig	2021-12-15 18:03:57 UTC (rev 287081)
+++ trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig	2021-12-15 18:08:42 UTC (rev 287082)
@@ -61,7 +61,7 @@
 
 PREBINDING = NO;
 
-WARNING_CFLAGS = -Wformat=2 -Wglobal-constructors -Wno-inconsistent-missing-override;
+WARNING_CFLAGS = -Wformat=2 -Wglobal-constructors -Wno-inconsistent-missing-override -Wno-unknown-warning-option;
 
 SUPPORTED_PLATFORMS = iphoneos iphonesimulator macosx appletvos appletvsimulator watchos watchsimulator;
 SUPPORTS_MACCATALYST = YES;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to