Title: [269251] trunk/Source/WebKit
Revision
269251
Author
[email protected]
Date
2020-11-02 10:11:13 -0800 (Mon, 02 Nov 2020)

Log Message

Fix link error with WebKit.framework

    Undefined symbols for architecture x86_64:
      "JSC::GenericTypedArrayView<JSC::Uint8Adaptor>::create(WTF::RefPtr<JSC::ArrayBuffer, WTF::RawPtrTraits<JSC::ArrayBuffer>, WTF::DefaultRefDerefTraits<JSC::ArrayBuffer> >&&, unsigned int, unsigned int)", referenced from:
          WebKit::convertToUint8Array(IPC::SharedBufferCopy&&) in UnifiedSource7.o
    ld: symbol(s) not found for architecture x86_64

* GPUProcess/media/RemoteLegacyCDMSessionProxy.cpp:
- Include <_javascript_Core/GenericTypedArrayViewInlines.h> to fix
  linker error with some builds of WebKit.
- See also WebProcess/GPU/media/RemoteLegacyCDMSession.cpp.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (269250 => 269251)


--- trunk/Source/WebKit/ChangeLog	2020-11-02 17:56:27 UTC (rev 269250)
+++ trunk/Source/WebKit/ChangeLog	2020-11-02 18:11:13 UTC (rev 269251)
@@ -1,3 +1,17 @@
+2020-11-02  David Kilzer  <[email protected]>
+
+        Fix link error with WebKit.framework
+
+            Undefined symbols for architecture x86_64:
+              "JSC::GenericTypedArrayView<JSC::Uint8Adaptor>::create(WTF::RefPtr<JSC::ArrayBuffer, WTF::RawPtrTraits<JSC::ArrayBuffer>, WTF::DefaultRefDerefTraits<JSC::ArrayBuffer> >&&, unsigned int, unsigned int)", referenced from:
+                  WebKit::convertToUint8Array(IPC::SharedBufferCopy&&) in UnifiedSource7.o
+            ld: symbol(s) not found for architecture x86_64
+
+        * GPUProcess/media/RemoteLegacyCDMSessionProxy.cpp:
+        - Include <_javascript_Core/GenericTypedArrayViewInlines.h> to fix
+          linker error with some builds of WebKit.
+        - See also WebProcess/GPU/media/RemoteLegacyCDMSession.cpp.
+
 2020-11-02  Youenn Fablet  <[email protected]>
 
         Stop sending origins from WebProcess to UIProcess for getUserMedia requests

Modified: trunk/Source/WebKit/GPUProcess/media/RemoteLegacyCDMSessionProxy.cpp (269250 => 269251)


--- trunk/Source/WebKit/GPUProcess/media/RemoteLegacyCDMSessionProxy.cpp	2020-11-02 17:56:27 UTC (rev 269250)
+++ trunk/Source/WebKit/GPUProcess/media/RemoteLegacyCDMSessionProxy.cpp	2020-11-02 18:11:13 UTC (rev 269251)
@@ -32,6 +32,7 @@
 #include "RemoteLegacyCDMFactoryProxy.h"
 #include "RemoteLegacyCDMSessionMessages.h"
 #include "SharedBufferCopy.h"
+#include <_javascript_Core/GenericTypedArrayViewInlines.h>
 #include <WebCore/SharedBuffer.h>
 
 namespace WebKit {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to