diff options
author | Thomas Huth <thuth@redhat.com> | 2023-01-12 14:49:26 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2023-01-16 17:51:20 +0100 |
commit | fb73eec46bdbfad0977b9a46f102a53e9083599c (patch) | |
tree | baf8b1b00ed6144c2cc37936423ebc593e76ef7c /hw/cpu | |
parent | fbdefc85df6db6a15c57733317fd7f7b87d152da (diff) |
hw/cpu: Mark arm11 and realview mpcore as target-independent code
Seems like there is nothing target-specific in here, so these files
can be moved to softmmu_ss to avoid that they get compiled twice
(once for qemu-system-arm and once for qemu-system-aarch64).
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230112134928.1026006-6-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/cpu')
-rw-r--r-- | hw/cpu/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/cpu/meson.build b/hw/cpu/meson.build index 9e52fee9e7..e37490074f 100644 --- a/hw/cpu/meson.build +++ b/hw/cpu/meson.build @@ -1,6 +1,6 @@ softmmu_ss.add(files('core.c', 'cluster.c')) -specific_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c')) -specific_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c')) +softmmu_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c')) +softmmu_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c')) specific_ss.add(when: 'CONFIG_A9MPCORE', if_true: files('a9mpcore.c')) specific_ss.add(when: 'CONFIG_A15MPCORE', if_true: files('a15mpcore.c')) |