docs/system/gdb.rst: Add some more heading structure
[qemu/ar7.git] / target / ppc / meson.build
blobbbfef90e08c9cf9585ea0aff32086c126422dd19
1 ppc_ss = ss.source_set()
2 ppc_ss.add(files(
3   'cpu-models.c',
4   'cpu.c',
5   'dfp_helper.c',
6   'excp_helper.c',
7   'fpu_helper.c',
8   'gdbstub.c',
9   'int_helper.c',
10   'mem_helper.c',
11   'misc_helper.c',
12   'timebase_helper.c',
13   'translate.c',
16 ppc_ss.add(libdecnumber)
18 ppc_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c'))
19 ppc_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user_only_helper.c'))
21 ppc_softmmu_ss = ss.source_set()
22 ppc_softmmu_ss.add(files(
23   'arch_dump.c',
24   'machine.c',
25   'mmu-hash32.c',
26   'mmu_helper.c',
27   'monitor.c',
29 ppc_softmmu_ss.add(when: 'TARGET_PPC64', if_true: files(
30   'compat.c',
31   'mmu-book3s-v3.c',
32   'mmu-hash64.c',
33   'mmu-radix64.c',
36 target_arch += {'ppc': ppc_ss}
37 target_softmmu_arch += {'ppc': ppc_softmmu_ss}