diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch | 26 | ||||
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.34.1.bb | 1 |
2 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch b/meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch deleted file mode 100644 index 1c6ba97037..0000000000 --- a/meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | From c71a4e18afb4869a0fbb0efd59c4860b72f493f7 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex@linutronix.de> | ||
3 | Date: Tue, 5 Oct 2021 13:32:28 +0200 | ||
4 | Subject: [PATCH] ANGLE: do not enable SSE on x86 | ||
5 | |||
6 | The code does not actually build there. | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
10 | --- | ||
11 | Source/ThirdParty/ANGLE/src/common/platform.h | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/Source/ThirdParty/ANGLE/src/common/platform.h b/Source/ThirdParty/ANGLE/src/common/platform.h | ||
15 | index 41f3cf4f..cab85a82 100644 | ||
16 | --- a/Source/ThirdParty/ANGLE/src/common/platform.h | ||
17 | +++ b/Source/ThirdParty/ANGLE/src/common/platform.h | ||
18 | @@ -89,7 +89,7 @@ | ||
19 | #if defined(_MSC_VER) && !defined(_M_ARM) && !defined(_M_ARM64) | ||
20 | # include <intrin.h> | ||
21 | # define ANGLE_USE_SSE | ||
22 | -#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) | ||
23 | +#elif defined(__GNUC__) && (defined(__x86_64__)) | ||
24 | # include <x86intrin.h> | ||
25 | # define ANGLE_USE_SSE | ||
26 | #endif | ||
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb b/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb index dde8963d04..4e2562df14 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb | |||
@@ -18,7 +18,6 @@ SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ | |||
18 | file://include_xutil.patch \ | 18 | file://include_xutil.patch \ |
19 | file://reduce-memory-overheads.patch \ | 19 | file://reduce-memory-overheads.patch \ |
20 | file://musl-lower-stack-usage.patch \ | 20 | file://musl-lower-stack-usage.patch \ |
21 | file://0001-ANGLE-do-not-enable-SSE-on-x86.patch \ | ||
22 | file://0001-Fix-build-without-opengl-or-es.patch \ | 21 | file://0001-Fix-build-without-opengl-or-es.patch \ |
23 | " | 22 | " |
24 | 23 | ||