48b9e02679
int_helper.c only contains system emulation code: remove the #ifdef'ry and move the file to the meson softmmu source set. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230602223016.58647-1-philmd@linaro.org>
24 lines
416 B
Meson
24 lines
416 B
Meson
gen = decodetree.process('insns.decode')
|
|
|
|
hppa_ss = ss.source_set()
|
|
hppa_ss.add(gen)
|
|
hppa_ss.add(files(
|
|
'cpu.c',
|
|
'fpu_helper.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'op_helper.c',
|
|
'translate.c',
|
|
))
|
|
|
|
hppa_softmmu_ss = ss.source_set()
|
|
hppa_softmmu_ss.add(files(
|
|
'int_helper.c',
|
|
'machine.c',
|
|
'mem_helper.c',
|
|
'sys_helper.c',
|
|
))
|
|
|
|
target_arch += {'hppa': hppa_ss}
|
|
target_softmmu_arch += {'hppa': hppa_softmmu_ss}
|