From: Alberto Garcia Date: Thu, 16 Apr 2020 16:37:24 +0000 (+0100) Subject: Use WTF_CPU_UNKNOWN when building for X32 X-Git-Tag: archive/raspbian/2.26.4-1_deb10u3+rpi1^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ae90275df2370d77e830d240d35cd4f2694c07db;p=webkit2gtk.git Use WTF_CPU_UNKNOWN when building for X32 Forwarded: no WebKitGTK doesn't build on X32 even with the JIT disabled. Treating the CPU as unknown is perhaps a bit severe, but it allows us to get the build done until someone steps up to maintain this properly. =================================================================== Gbp-Pq: Name fix-ftbfs-x32.patch --- diff --git a/CMakeLists.txt b/CMakeLists.txt index a5f5b9d855..89fc21f8bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,6 +93,8 @@ elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^mips64") set(WTF_CPU_MIPS64 1) elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^mips") set(WTF_CPU_MIPS 1) +elseif (CMAKE_CXX_LIBRARY_ARCHITECTURE STREQUAL "x86_64-linux-gnux32") + set(WTF_CPU_UNKNOWN 1) elseif (CMAKE_CXX_LIBRARY_ARCHITECTURE MATCHES "(x64|x86_64|amd64)") set(WTF_CPU_X86_64 1) elseif (CMAKE_CXX_LIBRARY_ARCHITECTURE MATCHES "(i[3-6]86|x86)") diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index 48cdb3e863..69e47080d6 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -142,10 +142,12 @@ /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit */ #if defined(__x86_64__) \ || defined(_M_X64) +#if !defined(__ILP32__) #define WTF_CPU_X86_64 1 #define WTF_CPU_X86_SSE2 1 #define WTF_CPU_KNOWN 1 #endif +#endif /* CPU(ARM64) - Apple */ #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)