summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-02-01 14:02:46 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-03 09:05:14 +0000
commitd2a050f8e3bae95f3ed953a53a55d41cdc94844f (patch)
tree754f03ab0284155dc13f24352a90f1812cbb0a24 /meta
parentf91604daee1b79aa41307a28bf38dd0a2e2c82a4 (diff)
downloadpoky-d2a050f8e3bae95f3ed953a53a55d41cdc94844f.tar.gz
ruby: Fix build on riscv/musl
This fixes a build issue that started with 3.1 upgrade Fixes | ../ruby-3.1.0/vm_dump.c:916:38: error: use of undeclared identifier 'REG_S1' | dump_machine_register(mctx->__gregs[REG_S1], "s1"); (From OE-Core rev: 1b0a88b6c31f85d70045a61f843302992ae7f94e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/ruby/ruby/0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch34
-rw-r--r--meta/recipes-devtools/ruby/ruby_3.1.0.bb9
2 files changed, 35 insertions, 8 deletions
diff --git a/meta/recipes-devtools/ruby/ruby/0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch b/meta/recipes-devtools/ruby/ruby/0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch
new file mode 100644
index 0000000000..f7b7adb3fd
--- /dev/null
+++ b/meta/recipes-devtools/ruby/ruby/0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch
@@ -0,0 +1,34 @@
1From dfb22e4d6662bf72879eda806eaa78c7b52b519e Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 25 Jan 2022 20:29:14 -0800
4Subject: [PATCH] vm_dump.c: Define REG_S1 and REG_S2 for musl/riscv
5
6These defines are missing in musl, there is a possible
7patch to add them to musl, but we need a full list of
8these names for mcontext that can be added once for all
9
10Upstream-Status: Inappropriate [musl bug]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 vm_dump.c | 5 +++++
14 1 file changed, 5 insertions(+)
15
16diff --git a/vm_dump.c b/vm_dump.c
17index a98f5aa..957b785 100644
18--- a/vm_dump.c
19+++ b/vm_dump.c
20@@ -39,6 +39,11 @@
21
22 #define MAX_POSBUF 128
23
24+#if defined(__riscv) && !defined(__GLIBC__)
25+# define REG_S1 9
26+# define REG_S2 18
27+#endif
28+
29 #define VM_CFP_CNT(ec, cfp) \
30 ((rb_control_frame_t *)((ec)->vm_stack + (ec)->vm_stack_size) - \
31 (rb_control_frame_t *)(cfp))
32--
332.35.0
34
diff --git a/meta/recipes-devtools/ruby/ruby_3.1.0.bb b/meta/recipes-devtools/ruby/ruby_3.1.0.bb
index e250164d2c..7a04a36432 100644
--- a/meta/recipes-devtools/ruby/ruby_3.1.0.bb
+++ b/meta/recipes-devtools/ruby/ruby_3.1.0.bb
@@ -11,6 +11,7 @@ SRC_URI += " \
11 file://0004-lib-mkmf.rb-sort-list-of-object-files-in-generated-M.patch \ 11 file://0004-lib-mkmf.rb-sort-list-of-object-files-in-generated-M.patch \
12 file://0005-Mark-Gemspec-reproducible-change-fixing-784225-too.patch \ 12 file://0005-Mark-Gemspec-reproducible-change-fixing-784225-too.patch \
13 file://0006-Make-gemspecs-reproducible.patch \ 13 file://0006-Make-gemspecs-reproducible.patch \
14 file://0001-vm_dump.c-Define-REG_S1-and-REG_S2-for-musl-riscv.patch \
14 " 15 "
15 16
16SRC_URI[sha256sum] = "50a0504c6edcb4d61ce6b8cfdbddaa95707195fab0ecd7b5e92654b2a9412854" 17SRC_URI[sha256sum] = "50a0504c6edcb4d61ce6b8cfdbddaa95707195fab0ecd7b5e92654b2a9412854"
@@ -36,18 +37,10 @@ EXTRA_OECONF = "\
36" 37"
37 38
38EXTRA_OECONF:append:libc-musl = "\ 39EXTRA_OECONF:append:libc-musl = "\
39 LIBS='-lucontext' \
40 ac_cv_func_isnan=yes \ 40 ac_cv_func_isnan=yes \
41 ac_cv_func_isinf=yes \ 41 ac_cv_func_isinf=yes \
42" 42"
43 43
44EXTRA_OECONF:append:libc-musl:riscv64 = "\
45 --with-coroutine=copy \
46"
47EXTRA_OECONF:append:libc-musl:riscv32 = "\
48 --with-coroutine=copy \
49"
50
51PARALLEL_MAKEINST = "" 44PARALLEL_MAKEINST = ""
52 45
53do_install:append:class-target () { 46do_install:append:class-target () {