Re: [PATCH 06/10] coroutine: add libucontext as external library

2020-10-13 Thread Daniel P . Berrangé
On Tue, Oct 13, 2020 at 04:49:26PM +0200, BALATON Zoltan via wrote: > On Tue, 13 Oct 2020, Stefan Hajnoczi wrote: > > On Mon, Oct 12, 2020 at 04:29:35PM -0700, Joelle van Dyne wrote: > > > From: osy > > > > > > iOS does not support ucontext natively for aarch64 and the sigaltstack is > > > also

Re: [PATCH 06/10] coroutine: add libucontext as external library

2020-10-13 Thread Joelle van Dyne
Thanks for providing the link. I'm not sure what license that is/if it is compatible with GPLv2. Can someone provide guidance on what to update in QEMU's license? I am not too familiar with all this license stuff. Regarding building for iOS, as Balaton said it is possible with an OSX host.

Re: [PATCH 06/10] coroutine: add libucontext as external library

2020-10-13 Thread BALATON Zoltan via
On Tue, 13 Oct 2020, Stefan Hajnoczi wrote: On Mon, Oct 12, 2020 at 04:29:35PM -0700, Joelle van Dyne wrote: From: osy 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

Re: [PATCH 06/10] coroutine: add libucontext as external library

2020-10-13 Thread Stefan Hajnoczi
On Mon, Oct 12, 2020 at 04:29:35PM -0700, Joelle van Dyne wrote: > From: osy > > 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

[PATCH 06/10] coroutine: add libucontext as external library

2020-10-12 Thread Joelle van Dyne
From: osy 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