From 593063e4cbff863fbbdc7dfd4b3a9c9ee6278682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Wed, 25 Feb 2026 06:01:38 +0100 Subject: [PATCH] accel/hvf: Build without target-specific knowledge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Code in accel/ aims to be target-agnostic. Enforce that by moving the HVF file units to system_ss[], which is target-agnostic. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Pierrick Bouvier Reviewed-by: Richard Henderson Message-Id: <20260225051303.91614-5-philmd@linaro.org> --- accel/hvf/meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/accel/hvf/meson.build b/accel/hvf/meson.build index fc52cb7843..6e2dcc4a5f 100644 --- a/accel/hvf/meson.build +++ b/accel/hvf/meson.build @@ -1,7 +1,4 @@ -hvf_ss = ss.source_set() -hvf_ss.add(files( +system_ss.add(when: 'CONFIG_HVF', if_true: files( 'hvf-all.c', 'hvf-accel-ops.c', )) - -specific_ss.add_all(when: 'CONFIG_HVF', if_true: hvf_ss)