]> code.ossystems Code Review - openembedded-core.git/commit
ruby: Do not use ucontext implementation for coroutines on musl/riscv
authorKhem Raj <raj.khem@gmail.com>
Thu, 18 Feb 2021 03:52:20 +0000 (19:52 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 18 Feb 2021 23:38:20 +0000 (23:38 +0000)
commit3b2b401dbbb8d3aa14a5fd864178f702af3c8115
treeebbb1fb5acb9bf4118136d83ae8b1d375b49402b
parent315fe8ab3b5bb8a709be98cd8998d4525fbe8725
ruby: Do not use ucontext implementation for coroutines on musl/riscv

The coroutine implementation in ruby has either arch specific
implementations or it falls back to slower ucontext API based
implementation assuming libc will provide the needed APIs, however musl
does not implement ucontext APIs like glibc, therefore fallback is to
use libucontext library on musl. However, libucontext is not ported to
riscv yet. which means on musl/riscv ruby is unbuildable, however a
third option is to use copy implementation for coroutines, which will be
not as good performance-wise, but it will do the job, therefore for now
use copy implementation for rv32/rv64 when using musl

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/ruby/ruby_3.0.0.bb