summaryrefslogtreecommitdiffstats
path: root/bsd-user/meson.build
diff options
context:
space:
mode:
authorWarner Losh2021-09-20 21:41:38 +0200
committerWarner Losh2021-10-18 20:51:39 +0200
commitda07e6944fb0f1fe162246cbf31271f31ec9a5c0 (patch)
tree53b0056222b108823a1896f767a4913496a0fee5 /bsd-user/meson.build
parentbsd-user: Add stop_all_tasks (diff)
downloadqemu-da07e6944fb0f1fe162246cbf31271f31ec9a5c0.tar.gz
qemu-da07e6944fb0f1fe162246cbf31271f31ec9a5c0.tar.xz
qemu-da07e6944fb0f1fe162246cbf31271f31ec9a5c0.zip
bsd-user/sysarch: Move to using do_freebsd_arch_sysarch interface
do_freebsd_arch_sysarch() exists in $ARCH/target_arch_sysarch.h for x86. Call it from do_freebsd_sysarch() and remove the mostly duplicate version in syscall.c. Future changes will move it to os-sys.c and support other architectures. Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Kyle Evans <kevans@FreeBSD.org>
Diffstat (limited to 'bsd-user/meson.build')
-rw-r--r--bsd-user/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/bsd-user/meson.build b/bsd-user/meson.build
index 5378f56f71..87885d91ed 100644
--- a/bsd-user/meson.build
+++ b/bsd-user/meson.build
@@ -12,3 +12,6 @@ bsd_user_ss.add(files(
'syscall.c',
'uaccess.c',
))
+
+# Pull in the OS-specific build glue, if any
+subdir(targetos)