Title: [176715] trunk/Source/WebCore
Revision
176715
Author
[email protected]
Date
2014-12-03 03:12:02 -0800 (Wed, 03 Dec 2014)

Log Message

[iOS] REGRESSION (r176622): WebCore fails to link

Speculative fix for the following build failure:

    Ld WebCore
    Undefined symbols for architecture armv7s:
      "__ZN3JSC10IdentifierC1EPNS_9ExecStateERKN3WTF12AtomicStringE", referenced from:
          __ZN7WebCoreL24createAccelerationObjectEPKNS_16DeviceMotionData12AccelerationEPN3JSC9ExecStateE in JSDeviceMotionEventCustom.o

* bindings/js/JSDeviceMotionEventCustom.cpp: Include
<runtime/IdentifierInlines.h> to define missing symbol.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (176714 => 176715)


--- trunk/Source/WebCore/ChangeLog	2014-12-03 10:09:06 UTC (rev 176714)
+++ trunk/Source/WebCore/ChangeLog	2014-12-03 11:12:02 UTC (rev 176715)
@@ -1,3 +1,17 @@
+2014-12-03  David Kilzer  <[email protected]>
+
+        [iOS] REGRESSION (r176622): WebCore fails to link
+
+        Speculative fix for the following build failure:
+
+            Ld WebCore
+            Undefined symbols for architecture armv7s:
+              "__ZN3JSC10IdentifierC1EPNS_9ExecStateERKN3WTF12AtomicStringE", referenced from:
+                  __ZN7WebCoreL24createAccelerationObjectEPKNS_16DeviceMotionData12AccelerationEPN3JSC9ExecStateE in JSDeviceMotionEventCustom.o
+
+        * bindings/js/JSDeviceMotionEventCustom.cpp: Include
+        <runtime/IdentifierInlines.h> to define missing symbol.
+
 2014-12-02  Dean Jackson  <[email protected]>
 
         [Media] Audio content shouldn't have fullscreen buttons, even if in a video element

Modified: trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp (176714 => 176715)


--- trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp	2014-12-03 10:09:06 UTC (rev 176714)
+++ trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp	2014-12-03 11:12:02 UTC (rev 176715)
@@ -31,6 +31,7 @@
 
 #include "DeviceMotionData.h"
 #include "DeviceMotionEvent.h"
+#include <runtime/IdentifierInlines.h>
 #include <runtime/JSCJSValueInlines.h>
 #include <runtime/ObjectConstructor.h>
 #include <runtime/StructureInlines.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to