[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 130/150] meson: bsd-user
From: |
Paolo Bonzini |
Subject: |
[PATCH 130/150] meson: bsd-user |
Date: |
Mon, 17 Aug 2020 16:40:33 +0200 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
Makefile.target | 3 ---
bsd-user/Makefile.objs | 2 --
bsd-user/meson.build | 10 ++++++++++
meson.build | 4 ++++
4 files changed, 14 insertions(+), 5 deletions(-)
delete mode 100644 bsd-user/Makefile.objs
create mode 100644 bsd-user/meson.build
diff --git a/Makefile.target b/Makefile.target
index a68859d7c2..5c099fa79f 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -141,9 +141,6 @@ ifdef CONFIG_BSD_USER
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
-I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
-obj-y += bsd-user/
-obj-y += gdbstub.o
-
endif #CONFIG_BSD_USER
#########################################################
diff --git a/bsd-user/Makefile.objs b/bsd-user/Makefile.objs
deleted file mode 100644
index 5e77f57782..0000000000
--- a/bsd-user/Makefile.objs
+++ /dev/null
@@ -1,2 +0,0 @@
-obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
- uaccess.o
diff --git a/bsd-user/meson.build b/bsd-user/meson.build
new file mode 100644
index 0000000000..0369549340
--- /dev/null
+++ b/bsd-user/meson.build
@@ -0,0 +1,10 @@
+bsd_user_ss.add(files(
+ 'bsdload.c',
+ 'elfload.c',
+ 'main.c',
+ 'mmap.c',
+ 'signal.c',
+ 'strace.c',
+ 'syscall.c',
+ 'uaccess.c',
+))
diff --git a/meson.build b/meson.build
index edb981699d..10e06acff0 100644
--- a/meson.build
+++ b/meson.build
@@ -701,8 +701,12 @@ subdir('net')
subdir('replay')
subdir('hw')
subdir('accel')
+subdir('bsd-user')
subdir('linux-user')
+bsd_user_ss.add(files('gdbstub.c'))
+specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)
+
linux_user_ss.add(files('gdbstub.c', 'thunk.c'))
specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss)
--
2.26.2
- [PATCH 121/150] meson: convert hw/block, (continued)
- [PATCH 121/150] meson: convert hw/block, Paolo Bonzini, 2020/08/17
- [PATCH 122/150] meson: convert hw/audio, Paolo Bonzini, 2020/08/17
- [PATCH 123/150] meson: convert hw/adc, Paolo Bonzini, 2020/08/17
- [PATCH 124/150] meson: convert hw/acpi, Paolo Bonzini, 2020/08/17
- [PATCH 125/150] meson: convert hw/9pfs, cleanup, Paolo Bonzini, 2020/08/17
- [PATCH 126/150] meson: convert hw/arch*, Paolo Bonzini, 2020/08/17
- [PATCH 127/150] meson: target, Paolo Bonzini, 2020/08/17
- [PATCH 128/150] meson: accel, Paolo Bonzini, 2020/08/17
- [PATCH 129/150] meson: linux-user, Paolo Bonzini, 2020/08/17
- [PATCH 130/150] meson: bsd-user,
Paolo Bonzini <=
- [PATCH 132/150] meson: plugins, Paolo Bonzini, 2020/08/17
- [PATCH 131/150] meson: cpu-emu, Paolo Bonzini, 2020/08/17
- [PATCH 135/150] rules.mak: remove version.o, Paolo Bonzini, 2020/08/17
- [PATCH 133/150] meson: link emulators without Makefile.target, Paolo Bonzini, 2020/08/17
- [PATCH 134/150] meson: convert systemtap files, Paolo Bonzini, 2020/08/17
- [PATCH 136/150] remove Makefile.target, Paolo Bonzini, 2020/08/17
- [PATCH 138/150] docs: automatically track manual dependencies, Paolo Bonzini, 2020/08/17
- [PATCH 137/150] meson: sphinx-build, Paolo Bonzini, 2020/08/17
- [PATCH 139/150] meson: build texi doc, Paolo Bonzini, 2020/08/17
- [PATCH 140/150] meson: convert check-block, Paolo Bonzini, 2020/08/17