aboutsummaryrefslogtreecommitdiff
path: root/target/sparc/meson.build
blob: a3638b9503f4ed66a86f9a0d286e2b7b2be55dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sparc_ss = ss.source_set()
sparc_ss.add(files(
  'cc_helper.c',
  'cpu.c',
  'fop_helper.c',
  'gdbstub.c',
  'helper.c',
  'ldst_helper.c',
  'mmu_helper.c',
  'translate.c',
  'win_helper.c',
))
sparc_ss.add(when: 'TARGET_SPARC', if_true: files('int32_helper.c'))
sparc_ss.add(when: 'TARGET_SPARC64', if_true: files('int64_helper.c', 'vis_helper.c'))

sparc_softmmu_ss = ss.source_set()
sparc_softmmu_ss.add(files(
  'machine.c',
  'monitor.c',
))

target_arch += {'sparc': sparc_ss}
target_softmmu_arch += {'sparc': sparc_softmmu_ss}