Changeset 223980 in webkit


Ignore:
Timestamp:
Oct 25, 2017 2:12:38 PM (7 years ago)
Author:
msaboff@apple.com
Message:

REGRESSION(r223937): Use of -fobjc-weak causes build failures with older compilers
https://bugs.webkit.org/show_bug.cgi?id=178825

Reviewed by Mark Lam.

Enable ARC for ARM64_32. This eliminate the need for setting CLANG_ENABLE_OBJC_WEAK.

  • Configurations/ToolExecutable.xcconfig:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r223971 r223980  
     12017-10-25  Michael Saboff  <msaboff@apple.com>
     2
     3        REGRESSION(r223937): Use of -fobjc-weak causes build failures with older compilers
     4        https://bugs.webkit.org/show_bug.cgi?id=178825
     5
     6        Reviewed by Mark Lam.
     7
     8        Enable ARC for ARM64_32.  This eliminate the need for setting CLANG_ENABLE_OBJC_WEAK.
     9
     10        * Configurations/ToolExecutable.xcconfig:
     11
    1122017-10-25  Keith Miller  <keith_miller@apple.com>
    213
  • trunk/Source/JavaScriptCore/Configurations/ToolExecutable.xcconfig

    r223937 r223980  
    5151CLANG_ENABLE_OBJC_ARC_arm64 = YES;
    5252CLANG_ENABLE_OBJC_ARC_arm64e = YES;
    53 
    54 CLANG_ENABLE_OBJC_WEAK = YES;
     53CLANG_ENABLE_OBJC_ARC_arm64_32 = YES;
    5554
    5655OTHER_CFLAGS = $(ASAN_OTHER_CFLAGS) -isystem icu;
Note: See TracChangeset for help on using the changeset viewer.