xref: /qemu/target/riscv/meson.build (revision d0fb9657)
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]
8
9riscv_ss = ss.source_set()
10riscv_ss.add(gen)
11riscv_ss.add(files(
12  'cpu.c',
13  'cpu_helper.c',
14  'csr.c',
15  'fpu_helper.c',
16  'gdbstub.c',
17  'op_helper.c',
18  'vector_helper.c',
19  'translate.c',
20))
21
22riscv_softmmu_ss = ss.source_set()
23riscv_softmmu_ss.add(files(
24  'arch_dump.c',
25  'pmp.c',
26  'monitor.c',
27  'machine.c'
28))
29
30target_arch += {'riscv': riscv_ss}
31target_softmmu_arch += {'riscv': riscv_softmmu_ss}
32