Re: [PATCH 1/5] accel/tcg: Simplify meson.build using subdir_done()

2024-05-03 Thread Philippe Mathieu-Daudé
On 3/5/24 13:16, Paolo Bonzini wrote: On Fri, May 3, 2024 at 11:17 AM Philippe Mathieu-Daudé wrote: If CONFIG_TCG is not defined, skip this directory calling subdir_done(). Then since we know CONFIG_TCG is defined, we don't need to check for it. You can only remove the check if you assume

Re: [PATCH 1/5] accel/tcg: Simplify meson.build using subdir_done()

2024-05-03 Thread Paolo Bonzini
On Fri, May 3, 2024 at 11:17 AM Philippe Mathieu-Daudé wrote: > > If CONFIG_TCG is not defined, skip this directory calling > subdir_done(). Then since we know CONFIG_TCG is defined, > we don't need to check for it. You can only remove the check if you assume that TCG (unlike e.g. KVM) is

[PATCH 1/5] accel/tcg: Simplify meson.build using subdir_done()

2024-05-03 Thread Philippe Mathieu-Daudé
If CONFIG_TCG is not defined, skip this directory calling subdir_done(). Then since we know CONFIG_TCG is defined, we don't need to check for it. Signed-off-by: Philippe Mathieu-Daudé --- accel/tcg/meson.build | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff