meson: build contrib/plugins with meson
Tried to unify this meson.build with tests/tcg/plugins/meson.build but the resulting modules are not output in the right directory. Originally proposed by Anton Kochkov, thank you! Solves: https://gitlab.com/qemu-project/qemu/-/issues/1710 Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-Id: <20241023212812.1376972-3-pierrick.bouvier@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
6d630d84ca
commit
2181b92887
28
contrib/plugins/meson.build
Normal file
28
contrib/plugins/meson.build
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
contrib_plugins = ['bbv', 'cache', 'cflow', 'drcov', 'execlog', 'hotblocks',
|
||||||
|
'hotpages', 'howvec', 'hwprofile', 'ips', 'stoptrigger']
|
||||||
|
if host_os != 'windows'
|
||||||
|
# lockstep uses socket.h
|
||||||
|
contrib_plugins += 'lockstep'
|
||||||
|
endif
|
||||||
|
|
||||||
|
t = []
|
||||||
|
if get_option('plugins')
|
||||||
|
foreach i : contrib_plugins
|
||||||
|
if host_os == 'windows'
|
||||||
|
t += shared_module(i, files(i + '.c') + 'win32_linker.c',
|
||||||
|
include_directories: '../../include/qemu',
|
||||||
|
link_depends: [win32_qemu_plugin_api_lib],
|
||||||
|
link_args: ['-Lplugins', '-lqemu_plugin_api'],
|
||||||
|
dependencies: glib)
|
||||||
|
else
|
||||||
|
t += shared_module(i, files(i + '.c'),
|
||||||
|
include_directories: '../../include/qemu',
|
||||||
|
dependencies: glib)
|
||||||
|
endif
|
||||||
|
endforeach
|
||||||
|
endif
|
||||||
|
if t.length() > 0
|
||||||
|
alias_target('contrib-plugins', t)
|
||||||
|
else
|
||||||
|
run_target('contrib-plugins', command: find_program('true'))
|
||||||
|
endif
|
@ -3690,6 +3690,10 @@ subdir('accel')
|
|||||||
subdir('plugins')
|
subdir('plugins')
|
||||||
subdir('ebpf')
|
subdir('ebpf')
|
||||||
|
|
||||||
|
if 'CONFIG_TCG' in config_all_accel
|
||||||
|
subdir('contrib/plugins')
|
||||||
|
endif
|
||||||
|
|
||||||
common_user_inc = []
|
common_user_inc = []
|
||||||
|
|
||||||
subdir('common-user')
|
subdir('common-user')
|
||||||
|
Loading…
Reference in New Issue
Block a user