Re: [OE-core] [PATCH 1/2] ruby: Use arm32 for coroutines on 32bit-arm

2020-03-09 Thread Andre McCurdy
On Mon, Mar 9, 2020 at 5:33 PM Khem Raj wrote: > > On 3/9/20 4:52 PM, Andre McCurdy wrote: > > On Mon, Mar 9, 2020 at 4:44 PM Khem Raj wrote: > >> > >> 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. > >> getc

Re: [OE-core] [PATCH 1/2] ruby: Use arm32 for coroutines on 32bit-arm

2020-03-09 Thread Khem Raj
On 3/9/20 4:52 PM, Andre McCurdy wrote: > On Mon, Mar 9, 2020 at 4:44 PM Khem Raj wrote: >> >> 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

Re: [OE-core] [PATCH 1/2] ruby: Use arm32 for coroutines on 32bit-arm

2020-03-09 Thread Andre McCurdy
On Mon, Mar 9, 2020 at 4:44 PM Khem Raj wrote: > > 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 co

[OE-core] [PATCH 1/2] ruby: Use arm32 for coroutines on 32bit-arm

2020-03-09 Thread Khem Raj
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/1645