mirror of https://github.com/xemu-project/xemu.git
20 lines
410 B
Meson
20 lines
410 B
Meson
![]() |
gen = decodetree.process('insns.decode')
|
||
|
|
||
|
loongarch_ss = ss.source_set()
|
||
|
loongarch_ss.add(files(
|
||
|
'cpu.c',
|
||
|
'disas.c',
|
||
|
))
|
||
|
loongarch_tcg_ss = ss.source_set()
|
||
|
loongarch_tcg_ss.add(gen)
|
||
|
loongarch_tcg_ss.add(files(
|
||
|
'fpu_helper.c',
|
||
|
'op_helper.c',
|
||
|
'translate.c',
|
||
|
))
|
||
|
loongarch_tcg_ss.add(zlib)
|
||
|
|
||
|
loongarch_ss.add_all(when: 'CONFIG_TCG', if_true: [loongarch_tcg_ss])
|
||
|
|
||
|
target_arch += {'loongarch': loongarch_ss}
|