diff options
| author | Thomas Huth <thuth@redhat.com> | 2023-04-13 20:26:36 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2023-04-20 11:25:32 +0200 |
| commit | 992deb4c4ff88540edf4f337238e5f84dcdab094 (patch) | |
| tree | b36f62d1d57f0faaf2858b0d507414629865fbd1 | |
| parent | 30ee29fd03bbdd4cc250c1a591c5199b33e7a118 (diff) | |
| download | focaccia-qemu-992deb4c4ff88540edf4f337238e5f84dcdab094.tar.gz focaccia-qemu-992deb4c4ff88540edf4f337238e5f84dcdab094.zip | |
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>
Diffstat (limited to '')
| -rw-r--r-- | hw/core/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/meson.build b/hw/core/meson.build index 7a4d02b6c0..ae977c9396 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', )) |