qemu/target/loongarch/tcg/meson.build
Song Gao 5c23704e47 target/loongarch: move translate modules to tcg/
Introduce the target/loongarch/tcg directory. Its purpose is to hold the TCG
code that is selected by CONFIG_TCG

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Song Gao <gaosong@loongson.cn>
Message-Id: <20240102020200.3462097-2-gaosong@loongson.cn>
2024-01-06 10:18:52 +08:00

20 lines
304 B
Meson

if 'CONFIG_TCG' not in config_all_accel
subdir_done()
endif
loongarch_ss.add([zlib, gen])
loongarch_ss.add(files(
'fpu_helper.c',
'op_helper.c',
'translate.c',
'vec_helper.c',
))
loongarch_system_ss.add(files(
'constant_timer.c',
'csr_helper.c',
'iocsr_helper.c',
'tlb_helper.c',
))