[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 063/147] meson: qemu-pr-helper
From: |
Paolo Bonzini |
Subject: |
[PATCH 063/147] meson: qemu-pr-helper |
Date: |
Mon, 10 Aug 2020 19:07:41 +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 | 7 +------
configure | 3 ---
meson.build | 10 ++++++++++
3 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/Makefile b/Makefile
index c269823..9ca02de 100644
--- a/Makefile
+++ b/Makefile
@@ -122,7 +122,7 @@ $(call set-vpath, $(SRC_PATH))
LIBS+=-lz $(LIBS_TOOLS)
-HELPERS-y = $(HELPERS)
+HELPERS-y =
# 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
@@ -275,11 +275,6 @@ COMMON_LDADDS = libqemuutil.a
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)
-scsi/qemu-pr-helper$(EXESUF): scsi/qemu-pr-helper.o scsi/utils.o
$(authz-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
-ifdef CONFIG_MPATH
-scsi/qemu-pr-helper$(EXESUF): LIBS += -ludev -lmultipath -lmpathpersist
-endif
-
clean: recurse-clean
# avoid old build problems by removing potentially incorrect old files
rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h
gen-op-arm.h
diff --git a/configure b/configure
index a8ad31c..da082f4 100755
--- a/configure
+++ b/configure
@@ -6645,7 +6645,6 @@ if [ "$eventfd" = "yes" ]; then
fi
tools=""
-helpers=""
if test "$want_tools" = "yes" ; then
if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
tools="qemu-storage-daemon\$(EXESUF) $tools"
@@ -6669,7 +6668,6 @@ if test "$softmmu" = yes ; then
fi
mpath=no
fi
- helpers="$helpers scsi/qemu-pr-helper\$(EXESUF)"
else
if test "$virtfs" = yes; then
error_exit "VirtFS is supported only on Linux"
@@ -7747,7 +7745,6 @@ else
QEMU_INCLUDES="-iquote ${source_path}/tcg/${ARCH} $QEMU_INCLUDES"
fi
-echo "HELPERS=$helpers" >> $config_host_mak
echo "TOOLS=$tools" >> $config_host_mak
echo "ROMS=$roms" >> $config_host_mak
echo "MAKE=$make" >> $config_host_mak
diff --git a/meson.build b/meson.build
index ad38f29..ae2716b 100644
--- a/meson.build
+++ b/meson.build
@@ -136,6 +136,10 @@ if 'CONFIG_XKBCOMMON' in config_host
link_args:
config_host['XKBCOMMON_LIBS'].split())
endif
rt = cc.find_library('rt', required: false)
+libmpathpersist = not_found
+if config_host.has_key('CONFIG_MPATH')
+ libmpathpersist = cc.find_library('mpathpersist')
+endif
libiscsi = not_found
if 'CONFIG_LIBISCSI' in config_host
libiscsi = declare_dependency(compile_args:
config_host['LIBISCSI_CFLAGS'].split(),
@@ -621,6 +625,7 @@ foreach target : target_dirs
endforeach
# Other build targets
+
if 'CONFIG_GUEST_AGENT' in config_host
subdir('qga')
endif
@@ -662,6 +667,11 @@ if have_tools
dependencies: [qemuutil, libcap_ng],
install: true,
install_dir: get_option('libexecdir'))
+
+ executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c',
'scsi/utils.c'),
+ dependencies: [authz, crypto, io, qom, qemuutil,
+ libcap_ng, libudev, libmpathpersist],
+ install: true)
endif
if 'CONFIG_IVSHMEM' in config_host
--
1.8.3.1
- [PATCH 051/147] meson: convert check-qapi-schema, (continued)
- [PATCH 051/147] meson: convert check-qapi-schema, Paolo Bonzini, 2020/08/10
- [PATCH 052/147] meson: convert qom directory to Meson (tools part), Paolo Bonzini, 2020/08/10
- [PATCH 054/147] meson: convert crypto directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 055/147] meson: convert io directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 053/147] meson: convert authz directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 056/147] meson: convert target/s390x/gen-features.h, Paolo Bonzini, 2020/08/10
- [PATCH 058/147] meson: add macos dependencies, Paolo Bonzini, 2020/08/10
- [PATCH 059/147] meson: add modules infrastructure, Paolo Bonzini, 2020/08/10
- [PATCH 060/147] meson: convert chardev directory to Meson (tools part), Paolo Bonzini, 2020/08/10
- [PATCH 061/147] meson: convert block, Paolo Bonzini, 2020/08/10
- [PATCH 063/147] meson: qemu-pr-helper,
Paolo Bonzini <=
- [PATCH 064/147] configure, Makefile; remove TOOLS and HELPERS-y variable, Paolo Bonzini, 2020/08/10
- [PATCH 065/147] meson: convert chardev directory to Meson (emulator part), Paolo Bonzini, 2020/08/10
- [PATCH 066/147] meson: convert tests/qtest to meson, Paolo Bonzini, 2020/08/10
- [PATCH 062/147] meson: qemu-{img,io,nbd}, Paolo Bonzini, 2020/08/10
- [PATCH 069/147] meson: convert root directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 070/147] meson: convert most of softmmu/, Paolo Bonzini, 2020/08/10
- [PATCH 071/147] meson: convert trace/, Paolo Bonzini, 2020/08/10
- [PATCH 067/147] meson: convert audio directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 057/147] meson: infrastructure for building emulators, Paolo Bonzini, 2020/08/10