1
0
mirror of https://gitlab.com/qemu-project/qemu synced 2024-07-09 04:27:12 +00:00
qemu/target/alpha/meson.build
Philippe Mathieu-Daudé 6adcba7c0a target/alpha: Only build sys_helper.c on system emulation
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231207105426.49339-3-philmd@linaro.org>
2024-01-19 12:28:59 +01:00

22 lines
380 B
Meson

alpha_ss = ss.source_set()
alpha_ss.add(files(
'cpu.c',
'fpu_helper.c',
'gdbstub.c',
'helper.c',
'clk_helper.c',
'int_helper.c',
'mem_helper.c',
'translate.c',
'vax_helper.c',
))
alpha_system_ss = ss.source_set()
alpha_system_ss.add(files(
'machine.c',
'sys_helper.c',
))
target_arch += {'alpha': alpha_ss}
target_system_arch += {'alpha': alpha_system_ss}