mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
36bf5dea7e
Also fix building on riscv64 Signed-off-by: Khem Raj <raj.khem@gmail.com>
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
From: Alberto Garcia <berto@igalia.com>
|
|
Description: Use WTF_CPU_UNKNOWN when building for riscv64
|
|
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.
|
|
Bug: https://bugs.webkit.org/show_bug.cgi?id=271371
|
|
Forwarded: no
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
--- a/Source/WTF/wtf/PlatformCPU.h
|
|
+++ b/Source/WTF/wtf/PlatformCPU.h
|
|
@@ -286,14 +286,6 @@
|
|
|
|
#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
|
|
--- a/Source/cmake/WebKitCommon.cmake
|
|
+++ b/Source/cmake/WebKitCommon.cmake
|
|
@@ -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 ()
|