mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 15:32:27 +02:00
webkit-gtk: add aarch64 support
Add patch from meta-linaro to compile webkit on aarch64. (From OE-Core rev: 0edc61b9a38f93f06098b929662db6c3ce68670d) Signed-off-by: Riku Voipio <riku.voipio@linaro.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
23e87bdbcd
commit
891ee9d585
41
meta/recipes-sato/webkit/webkit-gtk-1.8.3/aarch64.patch
Normal file
41
meta/recipes-sato/webkit/webkit-gtk-1.8.3/aarch64.patch
Normal file
@@ -0,0 +1,41 @@
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
|
||||
Index: webkit-1.8.3/Source/JavaScriptCore/wtf/Platform.h
|
||||
===================================================================
|
||||
--- webkit-1.8.3.orig/Source/JavaScriptCore/wtf/Platform.h 2013-06-12 00:58:14.000000000 -0700
|
||||
+++ webkit-1.8.3/Source/JavaScriptCore/wtf/Platform.h 2013-06-12 00:59:18.764056782 -0700
|
||||
@@ -304,6 +304,11 @@
|
||||
#define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
|
||||
#endif
|
||||
|
||||
+/* CPU(AARCH64) - Aarch64 */
|
||||
+#if defined(__aarch64__)
|
||||
+#define WTF_CPU_AARCH64 1
|
||||
+#endif
|
||||
+
|
||||
/* ==== OS() - underlying operating system; only to be used for mandated low-level services like
|
||||
virtual memory, not to choose a GUI toolkit ==== */
|
||||
|
||||
@@ -905,7 +910,8 @@
|
||||
|| CPU(SPARC64) \
|
||||
|| CPU(S390X) \
|
||||
|| CPU(MIPS64) \
|
||||
- || CPU(PPC64)
|
||||
+ || CPU(PPC64) \
|
||||
+ || CPU(AARCH64)
|
||||
#define WTF_USE_JSVALUE64 1
|
||||
#else
|
||||
#define WTF_USE_JSVALUE32_64 1
|
||||
Index: webkit-1.8.3/Source/JavaScriptCore/wtf/dtoa/utils.h
|
||||
===================================================================
|
||||
--- webkit-1.8.3.orig/Source/JavaScriptCore/wtf/dtoa/utils.h 2013-06-12 00:57:22.000000000 -0700
|
||||
+++ webkit-1.8.3/Source/JavaScriptCore/wtf/dtoa/utils.h 2013-06-12 00:58:28.340056029 -0700
|
||||
@@ -49,7 +49,7 @@
|
||||
defined(__ARMEL__) || \
|
||||
defined(_MIPS_ARCH_MIPS32R2)
|
||||
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
|
||||
-#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA) || CPU(MIPS64)
|
||||
+#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA) || CPU(MIPS64) || CPU(AARCH64)
|
||||
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
|
||||
#elif defined(_M_IX86) || defined(__i386__)
|
||||
#if defined(_WIN32)
|
||||
@@ -25,6 +25,7 @@ SRC_URI = "\
|
||||
file://bison-2.6.patch \
|
||||
file://obsolete_automake_macros.patch \
|
||||
file://0001-Enable-mips64-build.patch \
|
||||
file://aarch64.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "dcbf9d5e2e6391f857c29a57528b32a6"
|
||||
|
||||
Reference in New Issue
Block a user