View | Details | Raw Unified | Return to bug 233731
Collapse All | Expand All

(-)files/patch-Source_WTF_wtf_Platform.h (-1 / +19 lines)
Lines 1-7 Link Here
1
This patch reportedly fixes build for ARM. See PR 208569
1
This patch reportedly fixes build for ARM and powerpc64. See PR 208569
2
2
3
--- Source/WTF/wtf/Platform.h.orig	2016-04-10 06:48:36 UTC
3
--- Source/WTF/wtf/Platform.h.orig	2016-04-10 06:48:36 UTC
4
+++ Source/WTF/wtf/Platform.h
4
+++ Source/WTF/wtf/Platform.h
5
@@ -119,11 +119,16 @@
6
 
7
 /* CPU(PPC64) - PowerPC 64-bit Big Endian */
8
 #if (  defined(__ppc64__)      \
9
-    || defined(__PPC64__))     \
10
+    || defined(__PPC64__)      \
11
+    || defined(__powerpc64__))   \
12
     && defined(__BYTE_ORDER__) \
13
     && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
14
 #define WTF_CPU_PPC64 1
15
 #define WTF_CPU_BIG_ENDIAN 1
16
+#define ENABLE_ASSEMBLER 0
17
+#define ENABLE_JIT 0
18
+#define ENABLE_YARR_JIT 0
19
+#define ENABLE_SAMPLING_PROFILER 0
20
 #endif
21
 
22
 /* CPU(PPC64) - PowerPC 64-bit Little Endian */
5
@@ -218,6 +218,7 @@
23
@@ -218,6 +218,7 @@
6
 #elif defined(__ARM_ARCH_6__) \
24
 #elif defined(__ARM_ARCH_6__) \
7
     || defined(__ARM_ARCH_6J__) \
25
     || defined(__ARM_ARCH_6J__) \

Return to bug 233731