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

2020-11-08 Thread Philippe Mathieu-Daudé
On 11/9/20 12:24 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 and add it

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

2020-11-08 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 --