summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-14 09:02:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-14 20:46:39 +0100
commit39b661eb0baab17f733df854b05047aedf3f726b (patch)
tree5f080b5bdccb46782cfdc681dde0ab575fa1de9b /meta/recipes-sato/webkit/webkitgtk
parent572e50d73a1ddf97ec5e81fb114bbb5c730cae2e (diff)
downloadpoky-39b661eb0baab17f733df854b05047aedf3f726b.tar.gz
webkitgtk: Add patch to fix gcc5 compile issues
Without this patch, webkitgtk fails to build with gcc5. I found Khem had sent the patch against Qt for the same issue we were seeing on mips/ppc. (From OE-Core rev: a4f5e826689a6ab85e9d7424aa32602760d386bf) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/gcc5.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/gcc5.patch b/meta/recipes-sato/webkit/webkitgtk/gcc5.patch
new file mode 100644
index 0000000000..5951a81f34
--- /dev/null
+++ b/meta/recipes-sato/webkit/webkitgtk/gcc5.patch
@@ -0,0 +1,26 @@
1JSObject: Create explicit instantiation of putByIndexBeyondVectorLengthWithoutAttributes
2
3Reason for change: newer gcc might optimize away the templates
4and they wont be available for other .cpp files to use as these
5are used in a different .cpp we need to tell compiler to explicitly
6instantiate them.
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9
10Upstream-Status: Pending
11
12Index: webkitgtk-2.8.5/Source/JavaScriptCore/runtime/JSObject.cpp
13===================================================================
14--- webkitgtk-2.8.5.orig/Source/JavaScriptCore/runtime/JSObject.cpp
15+++ webkitgtk-2.8.5/Source/JavaScriptCore/runtime/JSObject.cpp
16@@ -1965,6 +1965,10 @@ void JSObject::putByIndexBeyondVectorLen
17 }
18 }
19
20+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<Int32Shape>(ExecState* exec, unsigned i, JSValue value);
21+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<DoubleShape>(ExecState* exec, unsigned i, JSValue value);
22+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<ContiguousShape>(ExecState* exec, unsigned i, JSValue value);
23+
24 void JSObject::putByIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, bool shouldThrow, ArrayStorage* storage)
25 {
26 VM& vm = exec->vm();