⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 287082 in webkit


Ignore:
Timestamp:
Dec 15, 2021, 10:08:42 AM (5 years ago)
Author:
dino@apple.com
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:
Location:
trunk/Source/ThirdParty/ANGLE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r287075 r287082  
     12021-12-15  Dean Jackson  <dino@apple.com>
     2
     3        [ANGLE] clang with -Wunknown-warning-option will fail on -Wweak-template-vtables
     4        https://bugs.webkit.org/show_bug.cgi?id=233837
     5        <rdar://problem/86335819>
     6
     7        Reviewed by Antoine Quint.
     8
     9        Turn off unknown-warning-option on Apple builds. This shouldn't need to be
     10        upstreamed - the Xcode configurations for ANGLE are specific to WebKit.
     11
     12        * Configurations/Base.xcconfig:
     13
    1142021-12-15  Chris Lord  <clord@igalia.com>
    215
  • trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig

    r285102 r287082  
    6262PREBINDING = NO;
    6363
    64 WARNING_CFLAGS = -Wformat=2 -Wglobal-constructors -Wno-inconsistent-missing-override;
     64WARNING_CFLAGS = -Wformat=2 -Wglobal-constructors -Wno-inconsistent-missing-override -Wno-unknown-warning-option;
    6565
    6666SUPPORTED_PLATFORMS = iphoneos iphonesimulator macosx appletvos appletvsimulator watchos watchsimulator;
Note: See TracChangeset for help on using the changeset viewer.