aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2023-04-13 20:26:36 +0200
committerThomas Huth <thuth@redhat.com>2023-04-20 11:25:32 +0200
commit992deb4c4ff88540edf4f337238e5f84dcdab094 (patch)
treeb36f62d1d57f0faaf2858b0d507414629865fbd1
parent30ee29fd03bbdd4cc250c1a591c5199b33e7a118 (diff)
downloadqemu-992deb4c4ff88540edf4f337238e5f84dcdab094.zip
qemu-992deb4c4ff88540edf4f337238e5f84dcdab094.tar.gz
qemu-992deb4c4ff88540edf4f337238e5f84dcdab094.tar.bz2
hw/core: Move numa.c into the target independent source set
There is nothing that depends on target specific macros in this file, so we can move it to the common source set to avoid that we have to compile this file multiple times (one time for each target). Message-Id: <20230413182636.139356-1-thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--hw/core/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/meson.build b/hw/core/meson.build
index 7a4d02b..ae977c9 100644
--- a/hw/core/meson.build
+++ b/hw/core/meson.build
@@ -44,6 +44,7 @@ softmmu_ss.add(files(
'machine.c',
'nmi.c',
'null-machine.c',
+ 'numa.c',
'qdev-fw.c',
'qdev-properties-system.c',
'sysbus.c',
@@ -53,5 +54,4 @@ softmmu_ss.add(files(
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: files(
'machine-qmp-cmds.c',
- 'numa.c',
))