From 855e2a79e1a136be9ba6f9fe2bc9672dbf7936c6 Mon Sep 17 00:00:00 2001 From: David Matthew Mattli Date: Mon, 9 Sep 2024 14:22:28 +0200 Subject: [PATCH] Fix FTBFS in sparc64 Bug-Debian: https://bugs.debian.org/806816 =================================================================== Gbp-Pq: Name fix-ftbfs-sparc64.patch --- Source/WTF/wtf/PlatformCPU.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/WTF/wtf/PlatformCPU.h b/Source/WTF/wtf/PlatformCPU.h index 166262f851..9af059cdf6 100644 --- a/Source/WTF/wtf/PlatformCPU.h +++ b/Source/WTF/wtf/PlatformCPU.h @@ -95,6 +95,11 @@ #define WTF_CPU_KNOWN 1 #endif +/* CPU(SPARC64) - sparc64 */ +#if defined(__sparc__) && defined(__sparc_v9__) +#define WTF_CPU_BIG_ENDIAN 1 +#endif + /* CPU(X86) - i386 / x86 32-bit */ #if defined(__i386__) \ || defined(i386) \ -- 2.30.2