meson.build (d96bf49ba842e8e1b73c7884d2be084582f34228) meson.build (c566080cd37fe328077a3c49d7fd248ce2a06bfe)
1#
2# The main gdbstub still relies on per-build definitions of various
3# types. The bits pushed to softmmu/user.c try to use guest agnostic
4# types such as hwaddr.
5#
6
7specific_ss.add(files('gdbstub.c'))
1#
2# The main gdbstub still relies on per-build definitions of various
3# types. The bits pushed to softmmu/user.c try to use guest agnostic
4# types such as hwaddr.
5#
6
7specific_ss.add(files('gdbstub.c'))
8
9# These have to built to the target ABI
10specific_ss.add(files('syscalls.c'))
11
8softmmu_ss.add(files('softmmu.c'))
9user_ss.add(files('user.c'))
10
11# The user-target is specialised by the guest
12specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-target.c'))
12softmmu_ss.add(files('softmmu.c'))
13user_ss.add(files('user.c'))
14
15# The user-target is specialised by the guest
16specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-target.c'))