aboutsummaryrefslogtreecommitdiff
path: root/gdbstub/meson.build
blob: c876222b9c8d484ff6d8049abe779aeec7341a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# The main gdbstub still relies on per-build definitions of various
# types. The bits pushed to softmmu/user.c try to use guest agnostic
# types such as hwaddr.
#

specific_ss.add(files('gdbstub.c'))

# These have to built to the target ABI
specific_ss.add(files('syscalls.c'))

softmmu_ss.add(files('softmmu.c'))
user_ss.add(files('user.c'))

# The user-target is specialised by the guest
specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-target.c'))