summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-03-25 13:54:15 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-29 15:59:28 +0100
commit2ac59abcd456d2cf33bbb8aa451cf6d43eeca68c (patch)
tree17493a262323de2f66c6b0447f8f64c184734858 /meta/recipes-extended
parent9fa7faefc713d65c5d783454adb82238ecc74ce2 (diff)
downloadpoky-2ac59abcd456d2cf33bbb8aa451cf6d43eeca68c.tar.gz
grep: Fix build on ppc/musl
Backport a patch from libsigsegv (From OE-Core rev: 59b55dd8cf87d5657061da32cec3506bb83ca1b0) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/grep/grep/0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch32
-rw-r--r--meta/recipes-extended/grep/grep_3.7.bb4
2 files changed, 35 insertions, 1 deletions
diff --git a/meta/recipes-extended/grep/grep/0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch b/meta/recipes-extended/grep/grep/0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch
new file mode 100644
index 0000000000..d8283d31b1
--- /dev/null
+++ b/meta/recipes-extended/grep/grep/0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch
@@ -0,0 +1,32 @@
1From 981385237834bdf3e468421147eece68d9bfc7e7 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 25 Mar 2022 13:34:26 -0700
4Subject: [PATCH] mcontext is not a standard layout so glibc and musl differ
5
6This is already applied to libsigsegv upstream, hopefully next version
7of grep will update its internal copy and we can drop this patch
8
9Upstream-Status: Backport [https://git.savannah.gnu.org/gitweb/?p=libsigsegv.git;a=commitdiff;h=a6ff69873110c0a8ba6f7fd90532dbc11224828c]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 lib/sigsegv.c | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/lib/sigsegv.c b/lib/sigsegv.c
16index 998c827..b6f4841 100644
17--- a/lib/sigsegv.c
18+++ b/lib/sigsegv.c
19@@ -219,8 +219,8 @@ int libsigsegv_version = LIBSIGSEGV_VERSION;
20 # define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.gp_regs[1]
21 # else /* 32-bit */
22 /* both should be equivalent */
23-# if 0
24-# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.regs->gpr[1]
25+# if ! defined __GLIBC__
26+# define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_regs->gregs[1]
27 # else
28 # define SIGSEGV_FAULT_STACKPOINTER ((ucontext_t *) ucp)->uc_mcontext.uc_regs->gregs[1]
29 # endif
30--
312.35.1
32
diff --git a/meta/recipes-extended/grep/grep_3.7.bb b/meta/recipes-extended/grep/grep_3.7.bb
index 40390c25d9..7005cbe164 100644
--- a/meta/recipes-extended/grep/grep_3.7.bb
+++ b/meta/recipes-extended/grep/grep_3.7.bb
@@ -6,7 +6,9 @@ SECTION = "console/utils"
6LICENSE = "GPL-3.0-only" 6LICENSE = "GPL-3.0-only"
7LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464" 7LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
8 8
9SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.xz" 9SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.xz \
10 file://0001-mcontext-is-not-a-standard-layout-so-glibc-and-musl-.patch \
11 "
10 12
11SRC_URI[sha256sum] = "5c10da312460aec721984d5d83246d24520ec438dd48d7ab5a05dbc0d6d6823c" 13SRC_URI[sha256sum] = "5c10da312460aec721984d5d83246d24520ec438dd48d7ab5a05dbc0d6d6823c"
12 14