QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
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(
|
|
'ioinst.c',
|
|
))
|
|
|
|
s390x_common_system_ss = ss.source_set()
|
|
s390x_common_system_ss.add(gen_features_h)
|
|
s390x_common_system_ss.add(files(
|
|
'helper.c',
|
|
'arch_dump.c',
|
|
'diag.c',
|
|
'machine.c',
|
|
'mmu_helper.c',
|
|
'sigp.c',
|
|
'cpu-system.c',
|
|
'cpu_models_system.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_common_system_arch += {'s390x': s390x_common_system_ss}
|
|
target_user_arch += {'s390x': s390x_user_ss}
|
|
|