Use WTF_CPU_UNKNOWN when building for riscv64
authorAlberto Garcia <berto@igalia.com>
Wed, 23 Oct 2024 09:57:14 +0000 (11:57 +0200)
committerAlberto Garcia <berto@igalia.com>
Wed, 23 Oct 2024 09:57:14 +0000 (11:57 +0200)
Bug: https://bugs.webkit.org/show_bug.cgi?id=271371
Forwarded: no

WebKitGTK doesn't build on riscv64 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-riscv64.patch

Source/WTF/wtf/PlatformCPU.h
Source/cmake/WebKitCommon.cmake

index ca328a202f72b46f0a5fb5d950e42a863ca2d43f..c88b16a248f4a148f7e14218ee6422891b980954 100644 (file)
 
 #endif /* ARM */
 
-/* CPU(RISCV64) - RISC-V 64-bit */
-#if    defined(__riscv) \
-    && defined(__riscv_xlen) \
-    && (__riscv_xlen == 64)
-#define WTF_CPU_RISCV64 1
-#define WTF_CPU_KNOWN 1
-#endif
-
 #if !CPU(KNOWN)
 #define WTF_CPU_UNKNOWN 1
 #endif
index 38ac0c471add71c0efac2873681b3ed6661ba906..9d7873e211f6687dc8d13511a399d3dea94a087e 100644 (file)
@@ -125,8 +125,6 @@ if (NOT HAS_RUN_WEBKIT_COMMON)
         set(WTF_CPU_PPC64 1)
     elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64le")
         set(WTF_CPU_PPC64LE 1)
-    elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^riscv64")
-        set(WTF_CPU_RISCV64 1)
     elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^loongarch64")
         set(WTF_CPU_LOONGARCH64 1)
     else ()