diff options
3 files changed, 59 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/webkitgtk/webkitgtk3/fix-ftbfs-riscv64.patch b/meta-oe/recipes-support/webkitgtk/webkitgtk3/fix-ftbfs-riscv64.patch new file mode 100644 index 0000000000..00347ef3e1 --- /dev/null +++ b/meta-oe/recipes-support/webkitgtk/webkitgtk3/fix-ftbfs-riscv64.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | From: Alberto Garcia <berto@igalia.com> | ||
2 | Description: Use WTF_CPU_UNKNOWN when building for riscv64 | ||
3 | WebKitGTK doesn't build on riscv64 even with the JIT disabled. | ||
4 | Treating the CPU as unknown is perhaps a bit severe, but it allows us | ||
5 | to get the build done until someone steps up to maintain this | ||
6 | properly. | ||
7 | Bug: https://bugs.webkit.org/show_bug.cgi?id=271371 | ||
8 | Forwarded: no | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
12 | --- a/Source/WTF/wtf/PlatformCPU.h | ||
13 | +++ b/Source/WTF/wtf/PlatformCPU.h | ||
14 | @@ -286,14 +286,6 @@ | ||
15 | |||
16 | #endif /* ARM */ | ||
17 | |||
18 | -/* CPU(RISCV64) - RISC-V 64-bit */ | ||
19 | -#if defined(__riscv) \ | ||
20 | - && defined(__riscv_xlen) \ | ||
21 | - && (__riscv_xlen == 64) | ||
22 | -#define WTF_CPU_RISCV64 1 | ||
23 | -#define WTF_CPU_KNOWN 1 | ||
24 | -#endif | ||
25 | - | ||
26 | #if !CPU(KNOWN) | ||
27 | #define WTF_CPU_UNKNOWN 1 | ||
28 | #endif | ||
29 | --- a/Source/cmake/WebKitCommon.cmake | ||
30 | +++ b/Source/cmake/WebKitCommon.cmake | ||
31 | @@ -125,8 +125,6 @@ if (NOT HAS_RUN_WEBKIT_COMMON) | ||
32 | set(WTF_CPU_PPC64 1) | ||
33 | elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64le") | ||
34 | set(WTF_CPU_PPC64LE 1) | ||
35 | - elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^riscv64") | ||
36 | - set(WTF_CPU_RISCV64 1) | ||
37 | elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^loongarch64") | ||
38 | set(WTF_CPU_LOONGARCH64 1) | ||
39 | else () | ||
diff --git a/meta-oe/recipes-support/webkitgtk/webkitgtk3/fix-typo-denormaldisabler.patch b/meta-oe/recipes-support/webkitgtk/webkitgtk3/fix-typo-denormaldisabler.patch new file mode 100644 index 0000000000..c3383fcd41 --- /dev/null +++ b/meta-oe/recipes-support/webkitgtk/webkitgtk3/fix-typo-denormaldisabler.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | From: Alberto Garcia <berto@igalia.com> | ||
2 | Subject: Fix build failure due to missing semicolon | ||
3 | |||
4 | Source: https://sources.debian.org/data/main/w/webkit2gtk/2.48.1-2/debian/patches/fix-typo-denormaldisabler.patch | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- a/Source/WebCore/platform/audio/DenormalDisabler.cpp | ||
9 | +++ b/Source/WebCore/platform/audio/DenormalDisabler.cpp | ||
10 | @@ -91,7 +91,7 @@ DenormalDisabler::~DenormalDisabler() | ||
11 | } | ||
12 | } | ||
13 | #else | ||
14 | -DenormalDisabler::DenormalDisabler() = default | ||
15 | +DenormalDisabler::DenormalDisabler() = default; | ||
16 | DenormalDisabler::~DenormalDisabler() = default; | ||
17 | #endif | ||
18 | |||
diff --git a/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.48.1.bb b/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.48.1.bb index 14dc3a841d..b03ed3cbb9 100644 --- a/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.48.1.bb +++ b/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.48.1.bb | |||
@@ -19,6 +19,8 @@ SRC_URI = "https://www.webkitgtk.org/releases/webkitgtk-${PV}.tar.xz \ | |||
19 | file://no-musttail-arm.patch \ | 19 | file://no-musttail-arm.patch \ |
20 | file://sys_futex.patch \ | 20 | file://sys_futex.patch \ |
21 | file://0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch \ | 21 | file://0001-Fix-build-errors-on-RISCV-https-bugs.webkit.org-show.patch \ |
22 | file://fix-typo-denormaldisabler.patch \ | ||
23 | file://fix-ftbfs-riscv64.patch \ | ||
22 | " | 24 | " |
23 | SRC_URI[sha256sum] = "98efdf21c4cdca0fe0b73ab5a8cb52093b5aa52d9b1b016a93f71dbfa1eb258f" | 25 | SRC_URI[sha256sum] = "98efdf21c4cdca0fe0b73ab5a8cb52093b5aa52d9b1b016a93f71dbfa1eb258f" |
24 | 26 | ||