From: Warner Losh Date: Sun, 30 Jan 2022 02:39:37 +0000 (-0700) Subject: bsd-user: Move system call building to os-syscall.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a1ea19481fb2d4db5fcf9b2362a4826efb65b328;p=qemu.git bsd-user: Move system call building to os-syscall.c Signed-off-by: Warner Losh Reviewed-by: Richard Henderson --- diff --git a/bsd-user/freebsd/meson.build b/bsd-user/freebsd/meson.build index 4b69cca7b9..f87c788e84 100644 --- a/bsd-user/freebsd/meson.build +++ b/bsd-user/freebsd/meson.build @@ -1,3 +1,4 @@ bsd_user_ss.add(files( 'os-sys.c', + 'os-syscall.c', )) diff --git a/bsd-user/meson.build b/bsd-user/meson.build index 8380fa44c2..5243122fc5 100644 --- a/bsd-user/meson.build +++ b/bsd-user/meson.build @@ -13,7 +13,6 @@ bsd_user_ss.add(files( 'mmap.c', 'signal.c', 'strace.c', - 'syscall.c', 'uaccess.c', ))