2020-08-03 17:04:25 +02:00
|
|
|
if 'CONFIG_HAS_LD_DYNAMIC_LIST' in config_host
|
|
|
|
plugin_ldflags = ['-Wl,--dynamic-list=' + (meson.build_root() / 'qemu-plugins-ld.symbols')]
|
|
|
|
elif 'CONFIG_HAS_LD_EXPORTED_SYMBOLS_LIST' in config_host
|
|
|
|
plugin_ldflags = ['-Wl,-exported_symbols_list,' + (meson.build_root() / 'qemu-plugins-ld64.symbols')]
|
|
|
|
else
|
|
|
|
plugin_ldflags = []
|
|
|
|
endif
|
|
|
|
|
2020-01-24 13:08:01 +01:00
|
|
|
specific_ss.add(when: 'CONFIG_PLUGIN', if_true: [files(
|
|
|
|
'loader.c',
|
|
|
|
'core.c',
|
|
|
|
'api.c',
|
2020-08-03 17:04:25 +02:00
|
|
|
), declare_dependency(link_args: plugin_ldflags)])
|