<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.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@146604
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-03-22 David Kilzer <ddkilzer@apple.com>
+
+ 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.
+
2013-03-22 David Kilzer <ddkilzer@apple.com>
Revert "BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]"
CLANG_ENABLE_OBJC_ARC = $(CLANG_ENABLE_OBJC_ARC_$(CURRENT_ARCH));
CLANG_ENABLE_OBJC_ARC_x86_64 = YES;
CLANG_ENABLE_OBJC_ARC_armv7 = YES;
-CLANG_ENABLE_OBJC_ARC_armv6 = YES;
+CLANG_ENABLE_OBJC_ARC_armv7s = YES;