Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
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'))
|