mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
meson: remove config_targetos
config_targetos is now empty and can be removed; its use in sourcesets that do not involve target-specific files can be replaced with an empty dictionary. In fact, at this point *all* sourcesets that do not involve target-specific files are just glorified mutable arrays. Enforce that they never test for symbols in "when:" by computing the set of files without "strict: false". Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@ -22,7 +22,7 @@ if get_option('tcg_interpreter')
|
||||
tcg_ss.add(files('tci.c'))
|
||||
endif
|
||||
|
||||
tcg_ss = tcg_ss.apply(config_targetos, strict: false)
|
||||
tcg_ss = tcg_ss.apply({})
|
||||
|
||||
libtcg_user = static_library('tcg_user',
|
||||
tcg_ss.sources() + genh,
|
||||
|
Reference in New Issue
Block a user