From: Philippe Mathieu-Daudé Date: Thu, 14 Sep 2023 18:57:10 +0000 (+0200) Subject: accel: Make accel-blocker.o target agnostic X-Git-Tag: v8.2.0-rc0~89^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c9955713e9d275980ca2177cf7fbc94b49bc89e5;p=thirdparty%2Fqemu.git accel: Make accel-blocker.o target agnostic accel-blocker.c is not target specific, move it to system_ss[]. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Anton Johansson Message-Id: <20230914185718.76241-5-philmd@linaro.org> Signed-off-by: Richard Henderson --- diff --git a/accel/meson.build b/accel/meson.build index 638a9a03ba9..76f3cbc5300 100644 --- a/accel/meson.build +++ b/accel/meson.build @@ -1,5 +1,5 @@ -specific_ss.add(files('accel-common.c', 'accel-blocker.c')) -system_ss.add(files('accel-softmmu.c')) +specific_ss.add(files('accel-common.c')) +system_ss.add(files('accel-softmmu.c', 'accel-blocker.c')) user_ss.add(files('accel-user.c')) subdir('tcg')