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>
14 lines
230 B
Meson
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',
|
|
))
|