meson.build (c13b8e9973635f34f3ce4356af27a311c993729c) meson.build (95799e36c15a9ab602a388491c40f6860f6ae8bf)
1# FIXME extra_args should accept files()
2dir = meson.current_source_dir()
3
4gen = [
5 decodetree.process('insn16.decode', extra_args: ['--static-decode=decode_insn16', '--insnwidth=16']),
6 decodetree.process('insn32.decode', extra_args: '--static-decode=decode_insn32'),
7 decodetree.process('XVentanaCondOps.decode', extra_args: '--static-decode=decode_XVentanaCodeOps'),
8]

--- 13 unchanged lines hidden (view full) ---

22 'm128_helper.c'
23))
24riscv_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c'))
25
26riscv_softmmu_ss = ss.source_set()
27riscv_softmmu_ss.add(files(
28 'arch_dump.c',
29 'pmp.c',
1# FIXME extra_args should accept files()
2dir = meson.current_source_dir()
3
4gen = [
5 decodetree.process('insn16.decode', extra_args: ['--static-decode=decode_insn16', '--insnwidth=16']),
6 decodetree.process('insn32.decode', extra_args: '--static-decode=decode_insn32'),
7 decodetree.process('XVentanaCondOps.decode', extra_args: '--static-decode=decode_XVentanaCodeOps'),
8]

--- 13 unchanged lines hidden (view full) ---

22 'm128_helper.c'
23))
24riscv_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c'))
25
26riscv_softmmu_ss = ss.source_set()
27riscv_softmmu_ss.add(files(
28 'arch_dump.c',
29 'pmp.c',
30 'debug.c',
30 'monitor.c',
31 'machine.c'
32))
33
34target_arch += {'riscv': riscv_ss}
35target_softmmu_arch += {'riscv': riscv_softmmu_ss}
31 'monitor.c',
32 'machine.c'
33))
34
35target_arch += {'riscv': riscv_ss}
36target_softmmu_arch += {'riscv': riscv_softmmu_ss}