View | Details | Raw Unified | Return to bug 250952 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 lines)
Lines 11-17 Link Here
11
LICENSE=	LGPL3
11
LICENSE=	LGPL3
12
LICENSE_FILE=	${WRKSRC}/LICENSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
13
14
BROKEN_aarch64=		fails to build: error: cast from pointer to smaller type loses information
15
BROKEN_armv6=		fails to build: error: Not supported ARM architecture
14
BROKEN_armv6=		fails to build: error: Not supported ARM architecture
16
BROKEN_armv7=		fails to build: error: invalid operand for instruction
15
BROKEN_armv7=		fails to build: error: invalid operand for instruction
17
BROKEN_mips64=		fails to link: undefined reference to __sync_add_and_fetch_4
16
BROKEN_mips64=		fails to link: undefined reference to __sync_add_and_fetch_4
(-)files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h (+12 lines)
Line 0 Link Here
1
--- src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h.orig	2020-11-08 17:05:56.503694000 +0100
2
+++ src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h	2020-11-08 17:06:42.105176000 +0100
3
@@ -1003,7 +1003,8 @@
4
     || CPU(SPARC64) \
5
     || CPU(S390X) \
6
     || CPU(PPC64) \
7
-    || CPU(MIPS64)
8
+    || CPU(MIPS64) \
9
+    || defined(aarch64)
10
 #define WTF_USE_JSVALUE64 1
11
 #else
12
 #define WTF_USE_JSVALUE32_64 1

Return to bug 250952