mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
meson: use config_base_arch for target libraries
Fixed commit introduced common dependencies for target libraries. Alas,
it wrongly reused the 'target' variable, which was previously set from
another loop.
Thus, some dependencies were missing depending on order of target list,
as found here [1].
The fix is to use the correct config_base_arch instead.
Kudos to Thomas Huth who had this right, before I reimplement it, and
introduce this bug.
[1] https://lore.kernel.org/qemu-devel/c54469ce-0385-4aea-b345-47711e9e61de@linaro.org/
Fixes: 4fb54de823
(meson: build target libraries with common dependencies)
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Tested-by: Cédric Le Goater <clg@redhat.com>
Link: https://lore.kernel.org/r/20250602233801.2699961-1-pierrick.bouvier@linaro.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
91084f3b44
commit
34d697f427
1 changed files with 3 additions and 4 deletions
|
@ -4135,13 +4135,12 @@ common_all = static_library('common',
|
|||
target_common_arch_libs = {}
|
||||
target_common_system_arch_libs = {}
|
||||
foreach target_base_arch, config_base_arch : config_base_arch_mak
|
||||
config_target = config_target_mak[target]
|
||||
target_inc = [include_directories('target' / target_base_arch)]
|
||||
inc = [common_user_inc + target_inc]
|
||||
|
||||
target_common = common_ss.apply(config_target, strict: false)
|
||||
target_system = system_ss.apply(config_target, strict: false)
|
||||
target_user = user_ss.apply(config_target, strict: false)
|
||||
target_common = common_ss.apply(config_base_arch, strict: false)
|
||||
target_system = system_ss.apply(config_base_arch, strict: false)
|
||||
target_user = user_ss.apply(config_base_arch, strict: false)
|
||||
common_deps = []
|
||||
system_deps = []
|
||||
user_deps = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue