Changeset 160131 in webkit


Ignore:
Timestamp:
Dec 4, 2013 3:07:04 PM (10 years ago)
Author:
dbates@webkit.org
Message:

[iOS] Enable Objective-C ARC when building JSC tools for iOS simulator
https://bugs.webkit.org/show_bug.cgi?id=125170

Reviewed by Geoffrey Garen.

  • API/tests/testapi.mm:
  • Configurations/ToolExecutable.xcconfig:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r160116 r160131  
     12013-12-04  Daniel Bates  <dabates@apple.com>
     2
     3        [iOS] Enable Objective-C ARC when building JSC tools for iOS simulator
     4        https://bugs.webkit.org/show_bug.cgi?id=125170
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * API/tests/testapi.mm:
     9        * Configurations/ToolExecutable.xcconfig:
     10
    1112013-12-04  peavo@outlook.com  <peavo@outlook.com>
    212
  • trunk/Source/JavaScriptCore/Configurations/ToolExecutable.xcconfig

    r159369 r160131  
    3939GCC_ENABLE_OBJC_GC = NO;
    4040CLANG_ENABLE_OBJC_ARC = $(CLANG_ENABLE_OBJC_ARC_$(CURRENT_ARCH));
     41CLANG_ENABLE_OBJC_ARC_i386 = $(CLANG_ENABLE_OBJC_ARC_i386_$(PLATFORM_NAME));
     42CLANG_ENABLE_OBJC_ARC_i386_iphonesimulator = YES; # For iOS Simulator version 4.0 and greater
    4143CLANG_ENABLE_OBJC_ARC_x86_64 = YES;
    4244CLANG_ENABLE_OBJC_ARC_arm64 = YES;
Note: See TracChangeset for help on using the changeset viewer.