Re: [PATCH v4 4/7] coroutine: add libucontext as external library

2020-11-08 Thread Joelle van Dyne
Thanks, it built on my 18.04 machine but it seems that newer versions of GCC had different behavior on the underscore assembly functions. I will fix it and test on 20.04. -j On Sun, Nov 8, 2020 at 7:46 AM Philippe Mathieu-Daudé wrote: > > Hi Joelle, > > On 11/8/20 6:26 AM, Joelle van Dyne wrote:

Re: [PATCH v4 4/7] coroutine: add libucontext as external library

2020-11-08 Thread Philippe Mathieu-Daudé
Hi Joelle, On 11/8/20 6:26 AM, Joelle van Dyne wrote: > iOS does not support ucontext natively for aarch64 and the sigaltstack is > also unsupported (even worse, it fails silently, see: > https://openradar.appspot.com/13002712 ) > > As a workaround we include a library implementation of ucontext

[PATCH v4 4/7] coroutine: add libucontext as external library

2020-11-07 Thread Joelle van Dyne
iOS does not support ucontext natively for aarch64 and the sigaltstack is also unsupported (even worse, it fails silently, see: https://openradar.appspot.com/13002712 ) As a workaround we include a library implementation of ucontext and add it as a build option. Signed-off-by: Joelle van Dyne --