[oe-commits] [openembedded-core] 13/21: ruby: Use arm32 for coroutines on 32bit-arm

git at git.openembedded.org git at git.openembedded.org
Wed Mar 11 01:14:27 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit b5dcbbb3c5711759f1eca639c2dcebe4e007c95a
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Mon Mar 9 18:19:38 2020 -0700

    ruby: Use arm32 for coroutines on 32bit-arm
    
    in 2.7 [2] ruby enabled ucontext for coroutines on arm32 but it does not
    work for musl since it uses glibc specific functions e.g.
    getcontext/swapcontext/swapcontext also see [1]
    
    This patch reverts back to using arm32 implementation for coroutines on
    arm
    
    [1] https://bugs.ruby-lang.org/issues/16455#change-83442
    [2] https://github.com/ruby/ruby/commit/6c6bf9ffcbfeb8be9d9c342e7604b74ec819e88a#diff-7fccec8474e2184cd2518046bf39d54cL10
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/ruby/ruby_2.7.0.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-devtools/ruby/ruby_2.7.0.bb b/meta/recipes-devtools/ruby/ruby_2.7.0.bb
index 268b4be..44c7616 100644
--- a/meta/recipes-devtools/ruby/ruby_2.7.0.bb
+++ b/meta/recipes-devtools/ruby/ruby_2.7.0.bb
@@ -25,6 +25,9 @@ EXTRA_OECONF = "\
     --with-pkg-config=pkg-config \
 "
 
+EXTRA_OECONF_append_libc-musl_arm = " --with-coroutine=arm32"
+EXTRA_OECONF_append_libc-musl_armeb = " --with-coroutine=arm32"
+
 do_install() {
     oe_runmake 'DESTDIR=${D}' install
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list