[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 056/150] meson: convert qom directory to Meson (tools part)
From: |
Paolo Bonzini |
Subject: |
[PATCH 056/150] meson: convert qom directory to Meson (tools part) |
Date: |
Fri, 14 Aug 2020 05:11:52 -0400 |
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 | 2 +-
Makefile.objs | 2 +-
Makefile.target | 3 ++-
meson.build | 1 +
qom/Makefile.objs | 3 ---
qom/meson.build | 15 +++++++++++++++
6 files changed, 20 insertions(+), 6 deletions(-)
create mode 100644 qom/meson.build
diff --git a/Makefile b/Makefile
index 0dce00d99a..bd0f208dd6 100644
--- a/Makefile
+++ b/Makefile
@@ -239,7 +239,6 @@ dummy := $(call unnest-vars,, \
storage-daemon-obj-y \
storage-daemon-obj-m \
crypto-obj-y \
- qom-obj-y \
io-obj-y \
common-obj-y \
common-obj-m)
@@ -260,6 +259,7 @@ $(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)
+$(SOFTMMU_ALL_RULES): $(qom-obj-y)
$(SOFTMMU_ALL_RULES): config-all-devices.mak
SOFTMMU_FUZZ_RULES=$(filter %-softmmu/fuzz, $(TARGET_DIRS_RULES))
diff --git a/Makefile.objs b/Makefile.objs
index baf15656e8..84bfa2a61a 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -1,6 +1,6 @@
#######################################################################
# Common libraries for tools and emulators
-qom-obj-y = qom/
+qom-obj-y = qom/libqom.fa
#######################################################################
# code used by both qemu system emulation and qemu-img
diff --git a/Makefile.target b/Makefile.target
index 257afc2723..1e04551a8e 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -191,13 +191,14 @@ all-obj-y := $(obj-y)
common-obj-m :=
include $(SRC_PATH)/Makefile.objs
+dummy := $(call fix-paths,../,, \
+ qom-obj-y)
dummy := $(call unnest-vars,.., \
authz-obj-y \
block-obj-y \
block-obj-m \
chardev-obj-y \
crypto-obj-y \
- qom-obj-y \
io-obj-y \
common-obj-y \
common-obj-m)
diff --git a/meson.build b/meson.build
index b884a4fcb7..d883fcf926 100644
--- a/meson.build
+++ b/meson.build
@@ -336,6 +336,7 @@ libqemuutil = static_library('qemuutil',
qemuutil = declare_dependency(link_with: libqemuutil,
sources: genh + version_res)
+subdir('qom')
subdir('fsdev')
# Other build targets
diff --git a/qom/Makefile.objs b/qom/Makefile.objs
index 1b45d104ba..b9629045e6 100644
--- a/qom/Makefile.objs
+++ b/qom/Makefile.objs
@@ -1,5 +1,2 @@
-qom-obj-y = object.o container.o qom-qobject.o
-qom-obj-y += object_interfaces.o
-
common-obj-$(CONFIG_SOFTMMU) += qom-hmp-cmds.o qom-qmp-cmds.o
storage-daemon-obj-y += qom-qmp-cmds.o
diff --git a/qom/meson.build b/qom/meson.build
new file mode 100644
index 0000000000..3c41ed37e4
--- /dev/null
+++ b/qom/meson.build
@@ -0,0 +1,15 @@
+qom_ss = ss.source_set()
+qom_ss.add(files(
+ 'container.c',
+ 'object.c',
+ 'object_interfaces.c',
+ 'qom-qobject.c',
+))
+
+qom_ss = qom_ss.apply(config_host, strict: false)
+libqom = static_library('qom', qom_ss.sources(),
+ dependencies: [qom_ss.dependencies()],
+ link_with: [libqemuutil],
+ name_suffix: 'fa')
+
+qom = declare_dependency(link_whole: libqom)
--
2.26.2
- [PATCH 050/150] meson: generate shader headers, (continued)
- [PATCH 050/150] meson: generate shader headers, Paolo Bonzini, 2020/08/14
- [PATCH 052/150] meson: handle edk2 bios and descriptors, Paolo Bonzini, 2020/08/14
- [PATCH 045/150] meson: add qemu-keymap, Paolo Bonzini, 2020/08/14
- [PATCH 053/150] meson: convert check-decodetree, Paolo Bonzini, 2020/08/14
- [PATCH 054/150] meson: convert tests/fp and check-softfloat, Paolo Bonzini, 2020/08/14
- [PATCH 059/150] meson: convert io directory to Meson, Paolo Bonzini, 2020/08/14
- [PATCH 057/150] meson: convert authz directory to Meson, Paolo Bonzini, 2020/08/14
- [PATCH 058/150] meson: convert crypto directory to Meson, Paolo Bonzini, 2020/08/14
- [PATCH 051/150] meson: generate hxtool files, Paolo Bonzini, 2020/08/14
- [PATCH 055/150] meson: convert check-qapi-schema, Paolo Bonzini, 2020/08/14
- [PATCH 056/150] meson: convert qom directory to Meson (tools part),
Paolo Bonzini <=
- [PATCH 060/150] meson: convert target/s390x/gen-features.h, Paolo Bonzini, 2020/08/14
- [PATCH 063/150] meson: convert chardev directory to Meson (tools part), Paolo Bonzini, 2020/08/14
- [PATCH 065/150] meson: qemu-{img,io,nbd}, Paolo Bonzini, 2020/08/14
- [PATCH 061/150] meson: infrastructure for building emulators, Paolo Bonzini, 2020/08/14
- [PATCH 062/150] meson: add modules infrastructure, Paolo Bonzini, 2020/08/14
- [PATCH 068/150] meson: convert chardev directory to Meson (emulator part), Paolo Bonzini, 2020/08/14
- [PATCH 069/150] meson: convert tests/qtest to meson, Paolo Bonzini, 2020/08/14
- [PATCH 066/150] meson: qemu-pr-helper, Paolo Bonzini, 2020/08/14
- [PATCH 064/150] meson: convert block, Paolo Bonzini, 2020/08/14
- [PATCH 067/150] configure, Makefile; remove TOOLS and HELPERS-y variable, Paolo Bonzini, 2020/08/14