Re: [PATCH v6 3/7] qemu: add support for iOS host

2023-11-28 Thread Philippe Mathieu-Daudé
(Cc'ing Ariadne, libucontext maintainer) On 21/1/21 19:53, Peter Maydell wrote: On Tue, 5 Jan 2021 at 02:25, Joelle van Dyne wrote: This introduces support for building for iOS hosts. When the correct Xcode toolchain is used, iOS host will be detected automatically. * block: disable features

Re: [PATCH v6 3/7] qemu: add support for iOS host

2021-01-21 Thread Peter Maydell
On Tue, 5 Jan 2021 at 02:25, Joelle van Dyne wrote: > > This introduces support for building for iOS hosts. When the correct Xcode > toolchain is used, iOS host will be detected automatically. > > * block: disable features not supported by iOS sandbox > * slirp: disable SMB features for iOS > * os

Re: [PATCH v6 3/7] qemu: add support for iOS host

2021-01-12 Thread Joelle van Dyne
On Tue, Jan 12, 2021 at 7:03 AM Peter Maydell wrote: > > On Tue, 5 Jan 2021 at 02:25, Joelle van Dyne wrote: > > > > This introduces support for building for iOS hosts. When the correct Xcode > > toolchain is used, iOS host will be detected automatically. > > > > * block: disable features not sup

Re: [PATCH v6 3/7] qemu: add support for iOS host

2021-01-12 Thread Joelle van Dyne
I think this was discussed before but the main issue right now is that there's no packaging system (like homebrew) for iOS cross building on Mac. Stefan suggested caching built libraries in an external location to use with the CI. I think this can be done but would require some thought to it. I am

Re: [PATCH v6 3/7] qemu: add support for iOS host

2021-01-12 Thread Peter Maydell
On Tue, 5 Jan 2021 at 02:25, Joelle van Dyne wrote: > > This introduces support for building for iOS hosts. When the correct Xcode > toolchain is used, iOS host will be detected automatically. > > * block: disable features not supported by iOS sandbox > * slirp: disable SMB features for iOS > * os

Re: [PATCH v6 3/7] qemu: add support for iOS host

2021-01-12 Thread Philippe Mathieu-Daudé
Hi Joelle, On 1/5/21 3:20 AM, Joelle van Dyne wrote: > This introduces support for building for iOS hosts. When the correct Xcode > toolchain is used, iOS host will be detected automatically. > > * block: disable features not supported by iOS sandbox > * slirp: disable SMB features for iOS > * os

[PATCH v6 3/7] qemu: add support for iOS host

2021-01-04 Thread Joelle van Dyne
This introduces support for building for iOS hosts. When the correct Xcode toolchain is used, iOS host will be detected automatically. * block: disable features not supported by iOS sandbox * slirp: disable SMB features for iOS * osdep: disable system() calls for iOS Signed-off-by: Joelle van Dyn