From fb5f7d19a390c399c35f9fbaa1185e309394666d Mon Sep 17 00:00:00 2001
From: Lei Maohui <leimaohui@cn.fujitsu.com>
Date: Fri, 31 Aug 2018 15:42:48 +0900
Subject: [PATCH] Fix build bug for armv32 BE.
Upstream-Status: Pending
Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
---
Source/WTF/wtf/dtoa/utils.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Source/WTF/wtf/dtoa/utils.h b/Source/WTF/wtf/dtoa/utils.h
index 889642cee..05302e6e6 100644
--- a/Source/WTF/wtf/dtoa/utils.h
+++ b/Source/WTF/wtf/dtoa/utils.h
@@ -49,7 +49,7 @@
defined(__ARMEL__) || \
defined(_MIPS_ARCH_MIPS32R2)
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
-#elif CPU(MIPS) || CPU(MIPS64) || CPU(PPC) || CPU(PPC64) || CPU(PPC64LE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(ALPHA) || CPU(ARM64) || CPU(HPPA)
+#elif CPU(MIPS) || CPU(MIPS64) || CPU(PPC) || CPU(PPC64) || CPU(PPC64LE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(ALPHA) || CPU(ARM64) || CPU(HPPA) || CPU(ARM)
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
#elif defined(_M_IX86) || defined(__i386__)
#if defined(_WIN32)
-
Martin Jansa authored
* there are few newer commits since the SRCREV used in this recipe it might be useful if someone is still using this (I don't, so I'll just fix the build failure with gcc-13 and cleanup the .patch files): $ git log --oneline 10cd6a106..origin/5.212 ac8ebc6c3 (origin/5.212) Enable QML tests 5a99e5d4c Import QtWebKit commit 5d89eef9bc689abb59ef799b445c35b1e322b3f1 685ed792f Import QtWebKit commit 143b469188bde226d5e70cff5f01699b8a29d865 8967b4f87 Import QtWebKit commit 6faf5d547055321f0d518fe83766499cac5d8664 08eaf858c Import QtWebKit commit cf37bc44f798d3c5a26d17086ada92688b9bfe6d 412e257d0 Workaround for Windows Store python3.exe e16357a52 Import QtWebKit commit f966d667c14ddcfe983f4a31fc80a1edbb6ada10 Signed-off-by:
Martin Jansa <Martin.Jansa@gmail.com>
e551f7b3