01c85e60a4
Finish the convertion started with commit de6cd7599b
("meson: Replace softmmu_ss -> system_ss"). If the
$target_type is 'system', then use the target_system_arch[]
source set :)
Mechanical change doing:
$ sed -i -e s/target_softmmu_arch/target_system_arch/g \
$(git grep -l target_softmmu_arch)
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231004090629.37473-13-philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
45 lines
963 B
Meson
45 lines
963 B
Meson
s390x_ss = ss.source_set()
|
|
s390x_ss.add(files(
|
|
'cpu.c',
|
|
'cpu_features.c',
|
|
'cpu_models.c',
|
|
'gdbstub.c',
|
|
'interrupt.c',
|
|
'cpu-dump.c',
|
|
))
|
|
|
|
gen_features = executable('gen-features', 'gen-features.c', native: true,
|
|
build_by_default: false)
|
|
|
|
gen_features_h = custom_target('gen-features.h',
|
|
output: 'gen-features.h',
|
|
capture: true,
|
|
command: gen_features)
|
|
|
|
s390x_ss.add(gen_features_h)
|
|
|
|
s390x_system_ss = ss.source_set()
|
|
s390x_system_ss.add(files(
|
|
'helper.c',
|
|
'arch_dump.c',
|
|
'diag.c',
|
|
'ioinst.c',
|
|
'machine.c',
|
|
'mmu_helper.c',
|
|
'sigp.c',
|
|
'cpu-sysemu.c',
|
|
'cpu_models_sysemu.c',
|
|
))
|
|
|
|
s390x_user_ss = ss.source_set()
|
|
s390x_user_ss.add(files(
|
|
'cpu_models_user.c',
|
|
))
|
|
|
|
subdir('tcg')
|
|
subdir('kvm')
|
|
|
|
target_arch += {'s390x': s390x_ss}
|
|
target_system_arch += {'s390x': s390x_system_ss}
|
|
target_user_arch += {'s390x': s390x_user_ss}
|