]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/core: Move numa.c into the target independent source set
authorThomas Huth <thuth@redhat.com>
Thu, 13 Apr 2023 18:26:36 +0000 (20:26 +0200)
committerThomas Huth <thuth@redhat.com>
Thu, 20 Apr 2023 09:25:32 +0000 (11:25 +0200)
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>
hw/core/meson.build

index 7a4d02b6c05029f99a842069ec68bbc58c2d77a4..ae977c93968fee63ec93ea3e1c230c8cdce82393 100644 (file)
@@ -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',
 ))