Changeset 146604 in webkit


Ignore:
Timestamp:
Mar 22, 2013 7:22:21 AM (11 years ago)
Author:
ddkilzer@apple.com
Message:

BUILD FIX (r146558): Build testapi.mm with ARC enabled for armv7s
<http://webkit.org/b/112608>

Fixes the following build failure:

Source/JavaScriptCore/API/tests/testapi.mm:205:1: error: method possibly missing a [super dealloc] call [-Werror,-Wobjc-missing-super-calls]
}

1 error generated.

  • Configurations/ToolExecutable.xcconfig: Enable ARC for armv7s

architecture.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r146603 r146604  
     12013-03-22  David Kilzer  <ddkilzer@apple.com>
     2
     3        BUILD FIX (r146558): Build testapi.mm with ARC enabled for armv7s
     4        <http://webkit.org/b/112608>
     5
     6        Fixes the following build failure:
     7
     8            Source/JavaScriptCore/API/tests/testapi.mm:205:1: error: method possibly missing a [super dealloc] call [-Werror,-Wobjc-missing-super-calls]
     9            }
     10            ^
     11            1 error generated.
     12
     13        * Configurations/ToolExecutable.xcconfig: Enable ARC for armv7s
     14        architecture.
     15
    1162013-03-22  David Kilzer  <ddkilzer@apple.com>
    217
  • trunk/Source/JavaScriptCore/Configurations/ToolExecutable.xcconfig

    r142184 r146604  
    3737CLANG_ENABLE_OBJC_ARC_x86_64 = YES;
    3838CLANG_ENABLE_OBJC_ARC_armv7 = YES;
    39 CLANG_ENABLE_OBJC_ARC_armv6 = YES;
     39CLANG_ENABLE_OBJC_ARC_armv7s = YES;
Note: See TracChangeset for help on using the changeset viewer.