aboutsummaryrefslogtreecommitdiff
path: root/target/loongarch/meson.build
blob: e002e9aaf65698f79fb5ab094342c4f858cda9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
gen = decodetree.process('insns.decode')

loongarch_ss = ss.source_set()
loongarch_ss.add(files(
  'cpu.c',
  'gdbstub.c',
))

loongarch_system_ss = ss.source_set()
loongarch_system_ss.add(files(
  'cpu_helper.c',
  'loongarch-qmp-cmds.c',
  'machine.c',
))

common_ss.add(when: 'CONFIG_LOONGARCH_DIS', if_true: [files('disas.c'), gen])

subdir('tcg')

target_arch += {'loongarch': loongarch_ss}
target_system_arch += {'loongarch': loongarch_system_ss}
subdir('kvm')