0fb1e19d78
To allow VirtFS on darwin, we need to check that pthread_fchdir_np is available, which has only been available since macOS 10.12. Additionally, virtfs_proxy_helper is disabled on Darwin. This patch series does not currently provide an implementation of the proxy-helper, but this functionality could be implemented later on. Signed-off-by: Keno Fischer <keno@juliacomputing.com> [Michael Roitzsch: - Rebase for NixOS] Signed-off-by: Michael Roitzsch <reactorcontrol@icloud.com> [Will Cohen: - Rebase to master] Signed-off-by: Will Cohen <wwcohen@gmail.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> [Will Cohen: - Add check for pthread_fchdir_np to virtfs - Add comments to patch commit - Note that virtfs_proxy_helper does not work on macOS - Fully adjust meson virtfs error note to specify macOS - Rebase to master] Signed-off-by: Will Cohen <wwcohen@gmail.com> Message-Id: <20220227223522.91937-12-wwcohen@gmail.com> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com> Acked-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
19 lines
732 B
Meson
19 lines
732 B
Meson
fsdev_ss = ss.source_set()
|
|
fsdev_ss.add(files('qemu-fsdev-opts.c', 'qemu-fsdev-throttle.c'))
|
|
fsdev_ss.add(when: 'CONFIG_ALL', if_true: files('qemu-fsdev-dummy.c'))
|
|
fsdev_ss.add(when: ['CONFIG_FSDEV_9P'], if_true: files(
|
|
'9p-iov-marshal.c',
|
|
'9p-marshal.c',
|
|
'qemu-fsdev.c',
|
|
), if_false: files('qemu-fsdev-dummy.c'))
|
|
softmmu_ss.add_all(when: 'CONFIG_LINUX', if_true: fsdev_ss)
|
|
softmmu_ss.add_all(when: 'CONFIG_DARWIN', if_true: fsdev_ss)
|
|
|
|
if have_virtfs_proxy_helper
|
|
executable('virtfs-proxy-helper',
|
|
files('virtfs-proxy-helper.c', '9p-marshal.c', '9p-iov-marshal.c'),
|
|
dependencies: [qemuutil, libattr, libcap_ng],
|
|
install: true,
|
|
install_dir: get_option('libexecdir'))
|
|
endif
|