migration: Make compress_data_with_multithreads return bool
[qemu/kevin.git] / target / sparc / meson.build
blobc316773db613a58fee33434be5f04ef10ade8a95
1 gen = decodetree.process('insns.decode')
3 sparc_ss = ss.source_set()
4 sparc_ss.add(gen)
5 sparc_ss.add(files(
6   'cc_helper.c',
7   'cpu.c',
8   'fop_helper.c',
9   'gdbstub.c',
10   'helper.c',
11   'ldst_helper.c',
12   'translate.c',
13   'win_helper.c',
15 sparc_ss.add(when: 'TARGET_SPARC', if_true: files('int32_helper.c'))
16 sparc_ss.add(when: 'TARGET_SPARC64', if_true: files('int64_helper.c', 'vis_helper.c'))
18 sparc_system_ss = ss.source_set()
19 sparc_system_ss.add(files(
20   'machine.c',
21   'mmu_helper.c',
22   'monitor.c',
25 target_arch += {'sparc': sparc_ss}
26 target_system_arch += {'sparc': sparc_system_ss}