mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-26 03:43:58 -06:00

Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Link: https://lore.kernel.org/r/20250521223414.248276-7-pierrick.bouvier@linaro.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
21 lines
474 B
Meson
21 lines
474 B
Meson
#
|
|
# The main gdbstub still relies on per-build definitions of various
|
|
# types. The bits pushed to system/user.c try to use guest agnostic
|
|
# types such as hwaddr.
|
|
#
|
|
|
|
# We build two versions of gdbstub, one for each mode
|
|
user_ss.add(files(
|
|
'gdbstub.c',
|
|
'syscalls.c',
|
|
'user.c'
|
|
))
|
|
|
|
system_ss.add(files(
|
|
'gdbstub.c',
|
|
'syscalls.c',
|
|
'system.c'
|
|
))
|
|
|
|
# The user-target is specialised by the guest
|
|
specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-target.c'))
|