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>
24 lines
412 B
Meson
24 lines
412 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_system_ss = ss.source_set()
|
|
hppa_system_ss.add(files(
|
|
'int_helper.c',
|
|
'machine.c',
|
|
'mem_helper.c',
|
|
'sys_helper.c',
|
|
))
|
|
|
|
target_arch += {'hppa': hppa_ss}
|
|
target_system_arch += {'hppa': hppa_system_ss}
|