[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 044/150] meson: add qemu-bridge-helper
From: |
Paolo Bonzini |
Subject: |
[PULL 044/150] meson: add qemu-bridge-helper |
Date: |
Tue, 18 Aug 2020 10:08:39 -0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
Makefile | 4 ----
meson.build | 9 ++++++++-
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index a61c66096e..b66b443037 100644
--- a/Makefile
+++ b/Makefile
@@ -188,8 +188,6 @@ LIBS+=-lz $(LIBS_TOOLS)
HELPERS-y = $(HELPERS)
-HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) +=
qemu-bridge-helper$(EXESUF)
-
# Sphinx does not allow building manuals into the same directory as
# the source files, so if we're doing an in-tree QEMU build we must
# build the manuals into a subdirectory (and then install them from
@@ -422,8 +420,6 @@ qemu-nbd$(EXESUF): qemu-nbd.o $(authz-obj-y) $(block-obj-y)
$(crypto-obj-y) $(io
qemu-io$(EXESUF): qemu-io.o $(authz-obj-y) $(block-obj-y) $(crypto-obj-y)
$(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
qemu-storage-daemon$(EXESUF): qemu-storage-daemon.o $(authz-obj-y)
$(block-obj-y) $(crypto-obj-y) $(chardev-obj-y) $(io-obj-y) $(qom-obj-y)
$(storage-daemon-obj-y) $(COMMON_LDADDS)
-qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
-
qemu-keymap$(EXESUF): qemu-keymap.o ui/input-keymap.o $(COMMON_LDADDS)
qemu-edid$(EXESUF): qemu-edid.o hw/display/edid-generate.o $(COMMON_LDADDS)
diff --git a/meson.build b/meson.build
index d34fe20fd1..c733beb02d 100644
--- a/meson.build
+++ b/meson.build
@@ -294,7 +294,6 @@ qemuutil = declare_dependency(link_with: libqemuutil,
sources: genh + version_res)
# Other build targets
-
if 'CONFIG_GUEST_AGENT' in config_host
subdir('qga')
endif
@@ -312,6 +311,14 @@ if have_tools
subdir('contrib/vhost-user-input')
subdir('contrib/vhost-user-scsi')
endif
+
+ if targetos == 'linux'
+ executable('qemu-bridge-helper', files('qemu-bridge-helper.c'),
+ dependencies: [qemuutil, libcap_ng],
+ install: true,
+ install_dir: get_option('libexecdir'))
+ endif
+
if 'CONFIG_IVSHMEM' in config_host
subdir('contrib/ivshmem-client')
subdir('contrib/ivshmem-server')
--
2.26.2
- [PULL 027/150] meson: add version.o, (continued)
- [PULL 027/150] meson: add version.o, Paolo Bonzini, 2020/08/18
- [PULL 030/150] contrib/vhost-user-blk: convert to Meson, Paolo Bonzini, 2020/08/18
- [PULL 034/150] contrib/vhost-user-input: convert to meson, Paolo Bonzini, 2020/08/18
- [PULL 023/150] meson: add sparse support, Paolo Bonzini, 2020/08/18
- [PULL 026/150] meson: add remaining generated tcg trace helpers, Paolo Bonzini, 2020/08/18
- [PULL 024/150] meson: add testsuite Makefile generator, Paolo Bonzini, 2020/08/18
- [PULL 031/150] vhost-user-scsi: add compatibility for libiscsi 1.9.0, Paolo Bonzini, 2020/08/18
- [PULL 032/150] contrib/vhost-user-scsi: convert to Meson, Paolo Bonzini, 2020/08/18
- [PULL 036/150] contrib/ivshmem: convert to meson, Paolo Bonzini, 2020/08/18
- [PULL 035/150] contrib/vhost-user-gpu: convert to meson, Paolo Bonzini, 2020/08/18
- [PULL 044/150] meson: add qemu-bridge-helper,
Paolo Bonzini <=
- [PULL 042/150] meson: add msi generation, Paolo Bonzini, 2020/08/18
- [PULL 046/150] meson: add qemu-edid, Paolo Bonzini, 2020/08/18
- [PULL 038/150] meson: add macos dependencies, Paolo Bonzini, 2020/08/18
- [PULL 025/150] libqemuutil, qapi, trace: convert to meson, Paolo Bonzini, 2020/08/18
- [PULL 033/150] contrib/rdmacm-mux: convert to Meson, Paolo Bonzini, 2020/08/18
- [PULL 037/150] contrib/elf2dmp: convert to meson, Paolo Bonzini, 2020/08/18
- [PULL 039/150] meson: add solaris and Haiku libraries, Paolo Bonzini, 2020/08/18
- [PULL 045/150] meson: add qemu-keymap, Paolo Bonzini, 2020/08/18
- [PULL 041/150] meson: convert vss-win32, Paolo Bonzini, 2020/08/18
- [PULL 043/150] meson: convert dummy Windows qga/qemu-ga target, Paolo Bonzini, 2020/08/18