aboutsummaryrefslogtreecommitdiff
path: root/accel/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-09-14 20:57:10 +0200
committerRichard Henderson <richard.henderson@linaro.org>2023-10-04 11:03:54 -0700
commitc9955713e9d275980ca2177cf7fbc94b49bc89e5 (patch)
tree5bb5147eef932d35ae77b9bc3a1e3ef4bc8076be /accel/meson.build
parent7ada976fee54c1b67dac2d9c0cb3bb02173084cc (diff)
downloadqemu-c9955713e9d275980ca2177cf7fbc94b49bc89e5.zip
qemu-c9955713e9d275980ca2177cf7fbc94b49bc89e5.tar.gz
qemu-c9955713e9d275980ca2177cf7fbc94b49bc89e5.tar.bz2
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é <philmd@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Message-Id: <20230914185718.76241-5-philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/meson.build')
-rw-r--r--accel/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/accel/meson.build b/accel/meson.build
index 638a9a0..76f3cbc 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')