These files are now free of target-specific symbols, build them as common files (thus forbidding further uses of such target-specific symbols).
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- hw/xtensa/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xtensa/meson.build b/hw/xtensa/meson.build index 1d5835df4bf..fec22ef7d2f 100644 --- a/hw/xtensa/meson.build +++ b/hw/xtensa/meson.build @@ -8,4 +8,4 @@ xtensa_ss.add(when: 'CONFIG_XTENSA_SIM', if_true: files('sim.c')) xtensa_ss.add(when: 'CONFIG_XTENSA_VIRT', if_true: files('virt.c')) xtensa_ss.add(when: 'CONFIG_XTENSA_XTFPGA', if_true: files('xtfpga.c')) -hw_arch += {'xtensa': xtensa_ss} +hw_common_arch += {'xtensa': xtensa_ss} -- 2.52.0
