[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 073/143] meson: convert qemu-storage-daemon
From: |
Paolo Bonzini |
Subject: |
[PATCH 073/143] meson: convert qemu-storage-daemon |
Date: |
Thu, 6 Aug 2020 21:15:09 +0200 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
Makefile | 5 -----
Makefile.objs | 10 ----------
meson.build | 2 +-
storage-daemon/Makefile.objs | 3 ---
storage-daemon/meson.build | 12 ++++++++++++
storage-daemon/qapi/meson.build | 5 +----
.../qemu-storage-daemon.c | 0
7 files changed, 14 insertions(+), 23 deletions(-)
delete mode 100644 storage-daemon/Makefile.objs
rename qemu-storage-daemon.c => storage-daemon/qemu-storage-daemon.c (100%)
diff --git a/Makefile b/Makefile
index 6e8e541..d9d6b59 100644
--- a/Makefile
+++ b/Makefile
@@ -164,8 +164,6 @@ include $(SRC_PATH)/Makefile.objs
endif
dummy := $(call unnest-vars,, \
- storage-daemon-obj-y \
- storage-daemon-obj-m \
common-obj-y \
common-obj-m)
@@ -181,7 +179,6 @@ TARGET_DIRS_RULES := $(foreach t, all fuzz clean install,
$(addsuffix /$(t), $(T
SOFTMMU_ALL_RULES=$(filter %-softmmu/all, $(TARGET_DIRS_RULES))
$(SOFTMMU_ALL_RULES): $(authz-obj-y)
$(SOFTMMU_ALL_RULES): $(block-obj-y)
-$(SOFTMMU_ALL_RULES): $(storage-daemon-obj-y)
$(SOFTMMU_ALL_RULES): $(chardev-obj-y)
$(SOFTMMU_ALL_RULES): $(crypto-obj-y)
$(SOFTMMU_ALL_RULES): $(io-obj-y)
@@ -272,8 +269,6 @@ Makefile: $(version-obj-y)
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)
-
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/Makefile.objs b/Makefile.objs
index 9b9bb40..bbb6f8c 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -32,16 +32,6 @@ io-obj-y = io/libio.fa
endif # CONFIG_SOFTMMU or CONFIG_TOOLS
-#######################################################################
-# storage-daemon-obj-y is code used by qemu-storage-daemon (these objects are
-# used for system emulation, too, but specified separately there)
-
-storage-daemon-obj-y = block/ qapi/ qom/ storage-daemon/
-storage-daemon-obj-y += blockdev.o blockdev-nbd.o iothread.o job-qmp.o
-storage-daemon-obj-$(CONFIG_WIN32) += os-win32.o
-storage-daemon-obj-$(CONFIG_POSIX) += os-posix.o
-storage-daemon-obj-y += libqmp.fa
-
######################################################################
# Target independent part of system emulation. The long term path is to
# suppress *all* target specific code in case of system emulation, i.e. a
diff --git a/meson.build b/meson.build
index cfc57f8..2071686 100644
--- a/meson.build
+++ b/meson.build
@@ -566,7 +566,6 @@ subdir('util')
subdir('qom')
subdir('authz')
subdir('crypto')
-subdir('storage-daemon')
subdir('ui')
@@ -773,6 +772,7 @@ if have_tools
qemu_io = executable('qemu-io', files('qemu-io.c'),
dependencies: [block, qemuutil], install: true)
+ subdir('storage-daemon')
subdir('contrib/rdmacm-mux')
subdir('contrib/elf2dmp')
diff --git a/storage-daemon/Makefile.objs b/storage-daemon/Makefile.objs
deleted file mode 100644
index 41c0d02..0000000
--- a/storage-daemon/Makefile.objs
+++ /dev/null
@@ -1,3 +0,0 @@
-storage-daemon-obj-y = qapi/libqsd-qapi.fa
-
-qemu-storage-daemon.o: storage-daemon/qapi/qapi-commands.h
storage-daemon/qapi/qapi-init-commands.h
diff --git a/storage-daemon/meson.build b/storage-daemon/meson.build
index 35f8949..ab2aa87 100644
--- a/storage-daemon/meson.build
+++ b/storage-daemon/meson.build
@@ -1 +1,13 @@
+qsd_ss = ss.source_set()
+qsd_ss.add(files('qemu-storage-daemon.c'))
+qsd_ss.add(block, chardev, qmp, qom, qemuutil)
+qsd_ss.add_all(blockdev_ss)
+
subdir('qapi')
+
+if have_tools
+ qsd_ss = qsd_ss.apply(config_host, strict: false)
+ executable('qemu-storage-daemon',
+ qsd_ss.sources(),
+ dependencies: qsd_ss.dependencies())
+endif
diff --git a/storage-daemon/qapi/meson.build b/storage-daemon/qapi/meson.build
index a4e24f3..cd064ac 100644
--- a/storage-daemon/qapi/meson.build
+++ b/storage-daemon/qapi/meson.build
@@ -4,7 +4,4 @@ qsd_qapi_files = custom_target('QAPI files for
qemu-storage-daemon',
command: [ qapi_gen, '-o',
'storage-daemon/qapi', '@INPUT@' ],
depend_files: [ qapi_inputs, qapi_gen_depends ])
-static_library('qsd-qapi',
- qsd_qapi_files.to_list(),
- name_suffix: 'fa',
- build_by_default: false)
+qsd_ss.add(qsd_qapi_files.to_list())
diff --git a/qemu-storage-daemon.c b/storage-daemon/qemu-storage-daemon.c
similarity index 100%
rename from qemu-storage-daemon.c
rename to storage-daemon/qemu-storage-daemon.c
--
1.8.3.1
- Re: [PATCH 068/143] meson: convert most of softmmu/, (continued)
[PATCH 067/143] meson: convert most of softmmu/, Paolo Bonzini, 2020/08/06
[PATCH 065/143] meson: convert ui directory to Meson, Paolo Bonzini, 2020/08/06
[PATCH 070/143] meson: convert block/, Paolo Bonzini, 2020/08/06
[PATCH 069/143] meson: convert trace/, Paolo Bonzini, 2020/08/06
[PATCH 071/143] meson: convert dump/, Paolo Bonzini, 2020/08/06
[PATCH 073/143] meson: convert qemu-storage-daemon,
Paolo Bonzini <=
[PATCH 072/143] meson: convert common QMP bits for qemu and qemu-storage-daemon, Paolo Bonzini, 2020/08/06
[PATCH 074/143] meson: convert replay directory to Meson, Paolo Bonzini, 2020/08/06
[PATCH 075/143] meson: convert migration directory to Meson, Paolo Bonzini, 2020/08/06
[PATCH 076/143] meson: convert net directory to Meson, Paolo Bonzini, 2020/08/06
[PATCH 077/143] meson: convert backends directory to Meson, Paolo Bonzini, 2020/08/06
[PATCH 078/143] meson: convert fsdev/, Paolo Bonzini, 2020/08/06
[PATCH 080/143] meson: convert qapi-specific to meson, Paolo Bonzini, 2020/08/06
[PATCH 079/143] meson: convert disas directory to Meson, Paolo Bonzini, 2020/08/06
[PATCH 081/143] meson: convert hw/xen, Paolo Bonzini, 2020/08/06
[PATCH 082/143] meson: convert hw/core, Paolo Bonzini, 2020/08/06