mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
a15mpcore.c doesn't need to include the target-specific 'kvm_arm.h' header, it only lacks the qemu_get_cpu() declaration which comes from 'hw/core/cpu.h'. Include the latter and build as common object. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20260225034451.41338-1-philmd@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
8 lines
394 B
Meson
8 lines
394 B
Meson
system_ss.add(files('core.c'))
|
|
system_ss.add(when: 'CONFIG_CPU_CLUSTER', if_true: files('cluster.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c'))
|
|
system_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c'))
|
|
system_ss.add(when: 'CONFIG_A9MPCORE', if_true: files('a9mpcore.c'))
|
|
system_ss.add(when: 'CONFIG_A15MPCORE', if_true: files('a15mpcore.c'))
|