mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
meson: Only allow CONFIG_USER_ONLY from certain source sets
Poison CONFIG_USER_ONLY and CONFIG_SOFTMMU unless the compilation unit is in specific_ss, libuser_ss, or libsystem_ss. This is intended to prevent files being incorrectly added to common_ss. Remove #ifndef CONFIG_USER_ONLY / #error / #endif blocks. All they do is trigger the poison error. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e4610f3809
commit
8916c373a3
6 changed files with 9 additions and 18 deletions
|
@ -4050,7 +4050,8 @@ common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss)
|
|||
libuser_ss = libuser_ss.apply({})
|
||||
libuser = static_library('user',
|
||||
libuser_ss.sources() + genh,
|
||||
c_args: '-DCONFIG_USER_ONLY',
|
||||
c_args: ['-DCONFIG_USER_ONLY',
|
||||
'-DCOMPILING_SYSTEM_VS_USER'],
|
||||
dependencies: libuser_ss.dependencies(),
|
||||
build_by_default: false)
|
||||
libuser = declare_dependency(objects: libuser.extract_all_objects(recursive: false),
|
||||
|
@ -4060,7 +4061,8 @@ common_ss.add(when: 'CONFIG_USER_ONLY', if_true: libuser)
|
|||
libsystem_ss = libsystem_ss.apply({})
|
||||
libsystem = static_library('system',
|
||||
libsystem_ss.sources() + genh,
|
||||
c_args: '-DCONFIG_SOFTMMU',
|
||||
c_args: ['-DCONFIG_SOFTMMU',
|
||||
'-DCOMPILING_SYSTEM_VS_USER'],
|
||||
dependencies: libsystem_ss.dependencies(),
|
||||
build_by_default: false)
|
||||
libsystem = declare_dependency(objects: libsystem.extract_all_objects(recursive: false),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue