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.
23 lines
537 B
23 lines
537 B
sparc_ss = ss.source_set()
|
|
sparc_ss.add(files(
|
|
'cc_helper.c',
|
|
'cpu.c',
|
|
'fop_helper.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'ldst_helper.c',
|
|
'translate.c',
|
|
'win_helper.c',
|
|
))
|
|
sparc_ss.add(when: 'TARGET_SPARC', if_true: files('int32_helper.c'))
|
|
sparc_ss.add(when: 'TARGET_SPARC64', if_true: files('int64_helper.c', 'vis_helper.c'))
|
|
|
|
sparc_softmmu_ss = ss.source_set()
|
|
sparc_softmmu_ss.add(files(
|
|
'machine.c',
|
|
'mmu_helper.c',
|
|
'monitor.c',
|
|
))
|
|
|
|
target_arch += {'sparc': sparc_ss}
|
|
target_softmmu_arch += {'sparc': sparc_softmmu_ss}
|
|
|