diff options
author | Christopher Larson <chris_larson@mentor.com> | 2016-12-16 11:02:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-09 13:34:32 +0000 |
commit | 79f7e215ee7c176f02efafe7359aaa77dbd9430c (patch) | |
tree | cca2dd597c06ba61508b4989bc0360c034b629f8 /meta/recipes-sato/webkit/webkitgtk | |
parent | 72fa7d558a43ed053547ddc74972631504e40614 (diff) | |
download | openembedded-core-79f7e215ee7c176f02efafe7359aaa77dbd9430c.tar.gz openembedded-core-79f7e215ee7c176f02efafe7359aaa77dbd9430c.tar.bz2 openembedded-core-79f7e215ee7c176f02efafe7359aaa77dbd9430c.zip |
webkitgtk: patch & disable JIT for x32
It might not be speedy, but it does build now.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk')
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/x32_support.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/x32_support.patch b/meta/recipes-sato/webkit/webkitgtk/x32_support.patch new file mode 100644 index 0000000000..fea4c27147 --- /dev/null +++ b/meta/recipes-sato/webkit/webkitgtk/x32_support.patch @@ -0,0 +1,22 @@ +From: Daniel Schepler <dschepler@gmail.com> +Subject: Fix FTBFS in x32 +Bug-Debian: https://bugs.debian.org/700795 +Upstream-Status: Pending +Signed-off-by: Christopher Larson <chris_larson@mentor.com> +Index: webkitgtk/Source/WTF/wtf/Platform.h +=================================================================== +--- webkitgtk.orig/Source/WTF/wtf/Platform.h ++++ webkitgtk/Source/WTF/wtf/Platform.h +@@ -182,8 +182,12 @@ + /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit */ + #if defined(__x86_64__) \ + || defined(_M_X64) ++#ifdef __ILP32__ ++#define WTF_CPU_X86_64_32 1 ++#else + #define WTF_CPU_X86_64 1 + #endif ++#endif + + /* CPU(ARM64) - Apple */ + #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__) |