target/ppc: Don't compile ppc_tlb_invalid_all without TCG
[qemu/kevin.git] / target / xtensa / meson.build
blob7c4efa6c6290d68abb68d9fc9016f424102719d8
1 xtensa_ss = ss.source_set()
3 xtensa_cores = run_command('sh', '-c', 'cd $MESON_SOURCE_ROOT/$MESON_SUBDIR ; ls -1 core-*.c')
4 xtensa_ss.add(files(xtensa_cores.stdout().strip().split('\n')))
6 xtensa_ss.add(files(
7   'cpu.c',
8   'exc_helper.c',
9   'fpu_helper.c',
10   'gdbstub.c',
11   'helper.c',
12   'op_helper.c',
13   'translate.c',
14   'win_helper.c',
15   'xtensa-isa.c',
18 xtensa_softmmu_ss = ss.source_set()
19 xtensa_softmmu_ss.add(files(
20   'dbg_helper.c',
21   'mmu_helper.c',
22   'monitor.c',
23   'xtensa-semi.c',
26 target_arch += {'xtensa': xtensa_ss}
27 target_softmmu_arch += {'xtensa': xtensa_softmmu_ss}