From 341f015692a1f5eb4d4b522c2f841df49430137b Mon Sep 17 00:00:00 2001 From: Thorsten Glaser Date: Mon, 13 Mar 2017 10:48:26 +0000 Subject: [PATCH] Fix FTBFS in x32 =================================================================== Gbp-Pq: Name fix-ftbfs-x32.patch --- Source/WTF/wtf/Platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index 3e202628a6..25131a92c4 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -696,7 +696,7 @@ #endif #if !defined(USE_JSVALUE64) && !defined(USE_JSVALUE32_64) -#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS))) \ +#if (CPU(X86_64) && !defined(__ILP32__) && (OS(UNIX) || OS(WINDOWS))) \ || (CPU(IA64) && !CPU(IA64_32)) \ || CPU(ALPHA) \ || CPU(ARM64) \ -- 2.30.2