2022-09-29 13:42:24 +02:00
|
|
|
#
|
|
|
|
# The main gdbstub still relies on per-build definitions of various
|
2023-10-04 11:06:22 +02:00
|
|
|
# types. The bits pushed to system/user.c try to use guest agnostic
|
2022-09-29 13:42:24 +02:00
|
|
|
# types such as hwaddr.
|
|
|
|
#
|
|
|
|
|
2023-03-03 03:57:58 +01:00
|
|
|
# We need to build the core gdb code via a library to be able to tweak
|
|
|
|
# cflags so:
|
|
|
|
|
|
|
|
gdb_user_ss = ss.source_set()
|
2023-06-13 15:33:47 +02:00
|
|
|
gdb_system_ss = ss.source_set()
|
2023-03-03 03:57:58 +01:00
|
|
|
|
|
|
|
# We build two versions of gdbstub, one for each mode
|
|
|
|
gdb_user_ss.add(files('gdbstub.c', 'user.c'))
|
2023-10-04 11:06:22 +02:00
|
|
|
gdb_system_ss.add(files('gdbstub.c', 'system.c'))
|
2023-03-03 03:57:58 +01:00
|
|
|
|
2023-08-30 11:39:45 +02:00
|
|
|
gdb_user_ss = gdb_user_ss.apply(config_targetos, strict: false)
|
|
|
|
gdb_system_ss = gdb_system_ss.apply(config_targetos, strict: false)
|
2023-03-03 03:57:58 +01:00
|
|
|
|
|
|
|
libgdb_user = static_library('gdb_user',
|
|
|
|
gdb_user_ss.sources() + genh,
|
|
|
|
name_suffix: 'fa',
|
2023-04-03 15:49:11 +02:00
|
|
|
c_args: '-DCONFIG_USER_ONLY',
|
2023-09-27 15:48:31 +02:00
|
|
|
build_by_default: false)
|
2023-03-03 03:57:58 +01:00
|
|
|
|
2023-10-04 11:06:22 +02:00
|
|
|
libgdb_system = static_library('gdb_system',
|
2023-06-13 15:33:47 +02:00
|
|
|
gdb_system_ss.sources() + genh,
|
2023-04-03 15:49:11 +02:00
|
|
|
name_suffix: 'fa',
|
2023-09-27 15:48:31 +02:00
|
|
|
build_by_default: false)
|
2023-03-03 03:57:58 +01:00
|
|
|
|
|
|
|
gdb_user = declare_dependency(link_whole: libgdb_user)
|
|
|
|
user_ss.add(gdb_user)
|
2023-10-04 11:06:22 +02:00
|
|
|
gdb_system = declare_dependency(link_whole: libgdb_system)
|
|
|
|
system_ss.add(gdb_system)
|
2023-03-03 03:57:57 +01:00
|
|
|
|
2023-03-03 03:58:04 +01:00
|
|
|
common_ss.add(files('syscalls.c'))
|
2023-03-03 03:57:57 +01:00
|
|
|
|
2023-03-03 03:57:47 +01:00
|
|
|
# The user-target is specialised by the guest
|
|
|
|
specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-target.c'))
|