Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
23 lines
670 B
Meson
23 lines
670 B
Meson
stub_ss.add(files('stubs-all.c'))
|
|
user_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files(
|
|
'user.c',
|
|
'guestfd.c'))
|
|
system_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files(
|
|
'config.c',
|
|
'console.c',
|
|
'guestfd.c',
|
|
'uaccess.c',
|
|
'syscalls.c',
|
|
))
|
|
stub_ss.add(files(
|
|
'stubs-system.c',
|
|
))
|
|
system_ss.add(when: 'CONFIG_ARM_COMPATIBLE_SEMIHOSTING',
|
|
if_true: files('arm-compat-semi.c'))
|
|
stub_ss.add(files('arm-compat-semi-stub.c'))
|
|
|
|
specific_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_USER_ONLY'],
|
|
if_true: files('syscalls.c'))
|
|
specific_ss.add(when: ['CONFIG_ARM_COMPATIBLE_SEMIHOSTING', 'CONFIG_USER_ONLY'],
|
|
if_true: files('arm-compat-semi.c'))
|