Files
qemu/common-user/meson.build
Richard Henderson 9affb4decd common-user: Move probe_guest_base from linux-user
Prepare to share probe_guest_base with bsd-user.

Create a linux_probe_guest_base wrapper with the portions
of probe_guest_base that are linux specific: managing the
commpage for various targets.

Reviewed-by: Warner Losh <imp@bsdimp.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2026-07-10 14:40:42 -07:00

14 lines
230 B
Meson

if not have_user
subdir_done()
endif
common_user_inc += include_directories('host/' / host_arch)
user_ss.add(files(
'mmap-min-addr.c',
'probe-guest-base.c',
'safe-syscall.S',
'safe-syscall-error.c',
'selfmap.c',
))