Title: [146604] trunk/Source/_javascript_Core
Revision
146604
Author
[email protected]
Date
2013-03-22 07:22:21 -0700 (Fri, 22 Mar 2013)

Log Message

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

Fixes the following build failure:

    Source/_javascript_Core/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.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (146603 => 146604)


--- trunk/Source/_javascript_Core/ChangeLog	2013-03-22 13:53:37 UTC (rev 146603)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-03-22 14:22:21 UTC (rev 146604)
@@ -1,5 +1,20 @@
 2013-03-22  David Kilzer  <[email protected]>
 
+        BUILD FIX (r146558): Build testapi.mm with ARC enabled for armv7s
+        <http://webkit.org/b/112608>
+
+        Fixes the following build failure:
+
+            Source/_javascript_Core/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  <[email protected]>
+
         Revert "BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]"
 
         This fixes a build failure introduced by this change:

Modified: trunk/Source/_javascript_Core/Configurations/ToolExecutable.xcconfig (146603 => 146604)


--- trunk/Source/_javascript_Core/Configurations/ToolExecutable.xcconfig	2013-03-22 13:53:37 UTC (rev 146603)
+++ trunk/Source/_javascript_Core/Configurations/ToolExecutable.xcconfig	2013-03-22 14:22:21 UTC (rev 146604)
@@ -36,4 +36,4 @@
 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;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to