[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 06/12] stubs/Makefile: Reduce the user-mode object list
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 06/12] stubs/Makefile: Reduce the user-mode object list |
Date: |
Mon, 16 Mar 2020 00:57:10 +0100 |
These stubs are not required when configured with --disable-system.
Reviewed-by: Richard Henderson <address@hidden>
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
stubs/Makefile.objs | 52 ++++++++++++++++++++++++++-------------------
1 file changed, 30 insertions(+), 22 deletions(-)
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs
index 45be5dc0ed..5ffa085c67 100644
--- a/stubs/Makefile.objs
+++ b/stubs/Makefile.objs
@@ -1,46 +1,54 @@
-stub-obj-y += arch_type.o
-stub-obj-y += bdrv-next-monitor-owned.o
stub-obj-y += blk-commit-all.o
-stub-obj-y += blockdev-close-all-bdrv-states.o
-stub-obj-y += clock-warp.o
stub-obj-y += cpu-get-clock.o
stub-obj-y += cpu-get-icount.o
stub-obj-y += dump.o
stub-obj-y += error-printf.o
stub-obj-y += fdset.o
stub-obj-y += gdbstub.o
-stub-obj-y += get-vm-name.o
-stub-obj-y += iothread.o
stub-obj-y += iothread-lock.o
stub-obj-y += is-daemonized.o
stub-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
stub-obj-$(CONFIG_LINUX_IO_URING) += io_uring.o
-stub-obj-y += machine-init-done.o
-stub-obj-y += migr-blocker.o
-stub-obj-y += change-state-handler.o
-stub-obj-y += monitor.o
stub-obj-y += monitor-core.o
stub-obj-y += notify-event.o
+stub-obj-y += qmp_memory_device.o
stub-obj-y += qtest.o
+stub-obj-y += ramfb.o
stub-obj-y += replay.o
-stub-obj-y += replay-user.o
stub-obj-y += runstate-check.o
+stub-obj-$(CONFIG_SOFTMMU) += semihost.o
stub-obj-y += set-fd-handler.o
+stub-obj-y += vmgenid.o
stub-obj-y += sysbus.o
stub-obj-y += tpm.o
stub-obj-y += trace-control.o
-stub-obj-y += uuid.o
-stub-obj-y += vm-stop.o
stub-obj-y += vmstate.o
+
+#######################################################################
+# code used by both qemu system emulation and qemu-img
+
+ifeq ($(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS)),y)
+
+stub-obj-y += arch_type.o
+stub-obj-y += bdrv-next-monitor-owned.o
+stub-obj-y += blockdev-close-all-bdrv-states.o
+stub-obj-y += change-state-handler.o
+stub-obj-y += clock-warp.o
stub-obj-y += fd-register.o
-stub-obj-y += qmp_memory_device.o
-stub-obj-y += target-monitor-defs.o
-stub-obj-y += target-get-monitor-def.o
-stub-obj-y += vmgenid.o
-stub-obj-y += xen-common.o
-stub-obj-y += xen-hvm.o
+stub-obj-y += fw_cfg.o
+stub-obj-y += get-vm-name.o
+stub-obj-y += iothread.o
+stub-obj-y += machine-init-done.o
+stub-obj-y += migr-blocker.o
+stub-obj-y += monitor.o
stub-obj-y += pci-host-piix.o
stub-obj-y += ram-block.o
-stub-obj-y += ramfb.o
-stub-obj-y += fw_cfg.o
-stub-obj-$(CONFIG_SOFTMMU) += semihost.o
+stub-obj-y += replay-user.o
+stub-obj-y += target-get-monitor-def.o
+stub-obj-y += target-monitor-defs.o
+stub-obj-y += uuid.o
+stub-obj-y += vm-stop.o
+stub-obj-y += xen-common.o
+stub-obj-y += xen-hvm.o
+
+endif # CONFIG_SOFTMMU || CONFIG_TOOLS
--
2.21.1
- [PATCH v2 00/12] user-mode: Prune build dependencies (part 1), Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 01/12] Makefile: Only build virtiofsd if system-mode is enabled, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 02/12] configure: Avoid building TCG when not needed, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 03/12] tests/Makefile: Only display TCG-related tests when TCG is available, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 04/12] tests/Makefile: Restrict some softmmu-only tests, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 05/12] util/Makefile: Reduce the user-mode object list, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 06/12] stubs/Makefile: Reduce the user-mode object list,
Philippe Mathieu-Daudé <=
- [PATCH v2 07/12] target/riscv/cpu: Restrict CPU migration to system-mode, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 08/12] exec: Assert CPU migration is not used on user-only build, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 09/12] arch_init: Remove unused 'qapi-commands-misc.h' include, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 10/12] target/i386: Restrict CpuClass::get_crash_info() to system-mode, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 11/12] target/s390x: Restrict CpuClass::get_crash_info() to system-mode, Philippe Mathieu-Daudé, 2020/03/15
- [PATCH v2 12/12] hw/core: Restrict CpuClass::get_crash_info() to system-mode, Philippe Mathieu-Daudé, 2020/03/15
- Re: [PATCH v2 00/12] user-mode: Prune build dependencies (part 1), Aleksandar Markovic, 2020/03/15