]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
plugins: reduce source conflicts in plugins list
authorPierrick Bouvier <pierrick.bouvier@linaro.org>
Wed, 28 Jan 2026 21:04:46 +0000 (13:04 -0800)
committerPierrick Bouvier <pierrick.bouvier@linaro.org>
Thu, 29 Jan 2026 17:34:14 +0000 (09:34 -0800)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Link: https://lore.kernel.org/qemu-devel/87cy2uat5e.fsf@draig.linaro.org
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
contrib/plugins/meson.build
tests/tcg/plugins/meson.build

index 53d52c9796749e2b914eaa41c09679bcfbd0623a..099319e7a17312a15c08c7be63b2df3491140ddd 100644 (file)
@@ -1,6 +1,19 @@
-contrib_plugins = ['bbv.c', 'cache.c', 'cflow.c', 'drcov.c', 'execlog.c',
-                   'hotblocks.c', 'hotpages.c', 'howvec.c', 'hwprofile.c',
-                   'ips.c', 'stoptrigger.c', 'traps.c', 'uftrace.c']
+contrib_plugins = [
+'bbv.c',
+'cache.c',
+'cflow.c',
+'drcov.c',
+'execlog.c',
+'hotblocks.c',
+'hotpages.c',
+'howvec.c',
+'hwprofile.c',
+'ips.c',
+'stoptrigger.c',
+'traps.c',
+'uftrace.c',
+]
+
 if host_os != 'windows'
   # lockstep uses socket.h
   contrib_plugins += 'lockstep.c'
index 303f97f96795423aec94fc758b22746c89e558fa..c5e49753fd9d547a968e6602e159d596500aabce 100644 (file)
@@ -1,5 +1,14 @@
-test_plugins = ['bb.c', 'discons.c', 'empty.c', 'inline.c', 'insn.c', 'mem.c',
-                'reset.c', 'syscall.c', 'patch.c']
+test_plugins = [
+'bb.c',
+'discons.c',
+'empty.c',
+'inline.c',
+'insn.c',
+'mem.c',
+'patch.c',
+'reset.c',
+'syscall.c',
+]
 
 t = []
 if get_option('plugins')