mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
We removed support for MIPS host. The KVM MIPS code is now unreachable, remove it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20260511135312.38705-5-philmd@linaro.org>
21 lines
358 B
Meson
21 lines
358 B
Meson
mips_user_ss = ss.source_set()
|
|
mips_system_ss = ss.source_set()
|
|
mips_ss = ss.source_set()
|
|
mips_ss.add(files(
|
|
'cpu.c',
|
|
'fpu.c',
|
|
'gdbstub.c',
|
|
'msa.c',
|
|
))
|
|
mips_ss.add(zlib)
|
|
|
|
if have_system
|
|
subdir('system')
|
|
endif
|
|
|
|
subdir('tcg')
|
|
|
|
target_arch += {'mips': mips_ss}
|
|
target_system_arch += {'mips': mips_system_ss}
|
|
target_user_arch += {'mips': mips_user_ss}
|