01c85e60a4
Finish the convertion started with commit de6cd7599b
("meson: Replace softmmu_ss -> system_ss"). If the
$target_type is 'system', then use the target_system_arch[]
source set :)
Mechanical change doing:
$ sed -i -e s/target_softmmu_arch/target_system_arch/g \
$(git grep -l target_softmmu_arch)
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231004090629.37473-13-philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
34 lines
758 B
Meson
34 lines
758 B
Meson
gen = decodetree.process('insns.decode')
|
|
|
|
loongarch_ss = ss.source_set()
|
|
loongarch_ss.add(files(
|
|
'cpu.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',
|
|
'gdbstub.c',
|
|
'vec_helper.c',
|
|
))
|
|
loongarch_tcg_ss.add(zlib)
|
|
|
|
loongarch_system_ss = ss.source_set()
|
|
loongarch_system_ss.add(files(
|
|
'loongarch-qmp-cmds.c',
|
|
'machine.c',
|
|
'tlb_helper.c',
|
|
'constant_timer.c',
|
|
'csr_helper.c',
|
|
'iocsr_helper.c',
|
|
))
|
|
|
|
common_ss.add(when: 'CONFIG_LOONGARCH_DIS', if_true: [files('disas.c'), gen])
|
|
|
|
loongarch_ss.add_all(when: 'CONFIG_TCG', if_true: [loongarch_tcg_ss])
|
|
|
|
target_arch += {'loongarch': loongarch_ss}
|
|
target_system_arch += {'loongarch': loongarch_system_ss}
|