diff options
| author | Keno Fischer <[email protected]> | 2022-02-27 17:35:22 -0500 |
|---|---|---|
| committer | Christian Schoenebeck <[email protected]> | 2022-03-07 11:49:31 +0100 |
| commit | 0fb1e19d78536e23b650ca72decdc29c98f2dcc1 (patch) | |
| tree | 7f0bc63d4d792c0c0561e403e9c426973ef833bd /fsdev | |
| parent | d3671fd972cd185a6923433aa4802f54d8b62112 (diff) | |
9p: darwin: meson: Allow VirtFS on Darwin
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 <[email protected]>
[Michael Roitzsch: - Rebase for NixOS]
Signed-off-by: Michael Roitzsch <[email protected]>
[Will Cohen: - Rebase to master]
Signed-off-by: Will Cohen <[email protected]>
Reviewed-by: Paolo Bonzini <[email protected]>
[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 <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Christian Schoenebeck <[email protected]>
Acked-by: Christian Schoenebeck <[email protected]>
Diffstat (limited to 'fsdev')
| -rw-r--r-- | fsdev/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fsdev/meson.build b/fsdev/meson.build index adf57cc43e..b632b66348 100644 --- a/fsdev/meson.build +++ b/fsdev/meson.build @@ -7,6 +7,7 @@ fsdev_ss.add(when: ['CONFIG_FSDEV_9P'], if_true: files( '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', |
