summary refs log tree commit diff stats
path: root/hw/core/meson.build
diff options
context:
space:
mode:
authorYanan Wang <wangyanan55@huawei.com>2021-10-26 11:46:58 +0800
committerPhilippe Mathieu-Daudé <philmd@redhat.com>2021-11-01 19:44:11 +0100
commit86ce2d28fa09d15547b5cabdc264cadfb53a848c (patch)
tree7c20eee151f904e4e90650a25e83ae009c15b9f4 /hw/core/meson.build
parent09112bef740853c9afd5318ecd0e93394648a3a6 (diff)
downloadfocaccia-qemu-86ce2d28fa09d15547b5cabdc264cadfb53a848c.tar.gz
focaccia-qemu-86ce2d28fa09d15547b5cabdc264cadfb53a848c.zip
hw/core/machine: Split out the smp parsing code
We are going to introduce an unit test for the parser smp_parse()
in hw/core/machine.c, but now machine.c is only built in softmmu.

In order to solve the build dependency on the smp parsing code and
avoid building unrelated stuff for the unit tests, move the tested
code from machine.c into a separate file, i.e., machine-smp.c and
build it in common field.

Signed-off-by: Yanan Wang <wangyanan55@huawei.com>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20211026034659.22040-2-wangyanan55@huawei.com>
Acked-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/core/meson.build')
-rw-r--r--hw/core/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/core/meson.build b/hw/core/meson.build
index 7ec7bb93d5..0f884d6fd4 100644
--- a/hw/core/meson.build
+++ b/hw/core/meson.build
@@ -23,6 +23,7 @@ else
 endif
 
 common_ss.add(files('cpu-common.c'))
+common_ss.add(files('machine-smp.c'))
 softmmu_ss.add(when: 'CONFIG_FITLOADER', if_true: files('loader-fit.c'))
 softmmu_ss.add(when: 'CONFIG_GENERIC_LOADER', if_true: files('generic-loader.c'))
 softmmu_ss.add(when: ['CONFIG_GUEST_LOADER', fdt], if_true: files('guest-loader.c'))