plugins: do not limit exported symbols if modules are active
On Mac --enable-modules and --enable-plugins are currently incompatible, because the
Apple -Wl,-exported_symbols_list command line options prevents the export of any
symbols needed by the modules. On x86 -Wl,--dynamic-list does not have this effect,
but only because the -Wl,--export-dynamic option provided by gmodule-2.0.pc overrides
it. On Apple there is no -Wl,--export-dynamic, because it is the default, and thus
no override.
Either way, when modules are active there is no reason to include the plugin_ldflags.
While at it, avoid the useless -Wl,--export-dynamic when --enable-plugins is
specified but --enable-modules is not; this way, the GNU and Apple configurations
are more similar.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/516
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
[AJB: fix noexport to no-export]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210811100550.54714-1-pbonzini@redhat.com>
Cc: qemu-stable@nongnu.org
2021-08-11 12:05:50 +02:00
|
|
|
plugin_ldflags = []
|
|
|
|
# Modules need more symbols than just those in plugins/qemu-plugins.symbols
|
|
|
|
if not enable_modules
|
2021-12-10 09:55:15 +01:00
|
|
|
if targetos == 'darwin'
|
2022-07-14 10:43:57 +02:00
|
|
|
configure_file(
|
2021-12-10 09:55:15 +01:00
|
|
|
input: files('qemu-plugins.symbols'),
|
|
|
|
output: 'qemu-plugins-ld64.symbols',
|
|
|
|
capture: true,
|
|
|
|
command: ['sed', '-ne', 's/^[[:space:]]*\\(qemu_.*\\);/_\\1/p', '@INPUT@'])
|
|
|
|
plugin_ldflags = ['-Wl,-exported_symbols_list,plugins/qemu-plugins-ld64.symbols']
|
|
|
|
else
|
|
|
|
plugin_ldflags = ['-Xlinker', '--dynamic-list=' + (meson.project_source_root() / 'plugins/qemu-plugins.symbols')]
|
plugins: do not limit exported symbols if modules are active
On Mac --enable-modules and --enable-plugins are currently incompatible, because the
Apple -Wl,-exported_symbols_list command line options prevents the export of any
symbols needed by the modules. On x86 -Wl,--dynamic-list does not have this effect,
but only because the -Wl,--export-dynamic option provided by gmodule-2.0.pc overrides
it. On Apple there is no -Wl,--export-dynamic, because it is the default, and thus
no override.
Either way, when modules are active there is no reason to include the plugin_ldflags.
While at it, avoid the useless -Wl,--export-dynamic when --enable-plugins is
specified but --enable-modules is not; this way, the GNU and Apple configurations
are more similar.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/516
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
[AJB: fix noexport to no-export]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210811100550.54714-1-pbonzini@redhat.com>
Cc: qemu-stable@nongnu.org
2021-08-11 12:05:50 +02:00
|
|
|
endif
|
2020-08-03 17:04:25 +02:00
|
|
|
endif
|
|
|
|
|
2023-08-30 12:20:53 +02:00
|
|
|
if get_option('plugins')
|
|
|
|
specific_ss.add(files(
|
|
|
|
'loader.c',
|
|
|
|
'core.c',
|
|
|
|
'api.c',
|
|
|
|
), declare_dependency(link_args: plugin_ldflags))
|
|
|
|
endif
|