summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-10-27 11:07:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-28 14:16:31 +0100
commit70011ac7ccd1b7f4b4d6ddf0e08a6d07a2246c01 (patch)
tree05d9d8d2952c28fe29dfde7ea1eae6acc3b89c21 /meta/recipes-sato
parentc69f416c9382bc43bdadbea2903e9d8fba3b69a3 (diff)
downloadpoky-70011ac7ccd1b7f4b4d6ddf0e08a6d07a2246c01.tar.gz
webkitgtk: drop unnecessary SSE disabling patch
(From OE-Core rev: 825467808949c1024a470d45a2468987648d8984) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch26
-rw-r--r--meta/recipes-sato/webkit/webkitgtk_2.34.1.bb1
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 @@
1From c71a4e18afb4869a0fbb0efd59c4860b72f493f7 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Tue, 5 Oct 2021 13:32:28 +0200
4Subject: [PATCH] ANGLE: do not enable SSE on x86
5
6The code does not actually build there.
7
8Upstream-Status: Pending
9Signed-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
14diff --git a/Source/ThirdParty/ANGLE/src/common/platform.h b/Source/ThirdParty/ANGLE/src/common/platform.h
15index 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