2022-04-28 07:38:02 +03:00
|
|
|
specific_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files(
|
|
|
|
'guestfd.c',
|
2022-04-28 11:44:28 +03:00
|
|
|
'syscalls.c',
|
2022-04-28 07:38:02 +03:00
|
|
|
))
|
|
|
|
|
2023-06-13 16:33:46 +03:00
|
|
|
specific_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SYSTEM_ONLY'], if_true: files(
|
2020-01-24 14:49:17 +03:00
|
|
|
'config.c',
|
|
|
|
'console.c',
|
2022-04-28 06:44:17 +03:00
|
|
|
'uaccess.c',
|
2020-01-24 14:49:17 +03:00
|
|
|
))
|
2021-01-09 01:42:48 +03:00
|
|
|
|
2024-04-08 18:53:24 +03:00
|
|
|
common_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SYSTEM_ONLY'], if_false: files('stubs-all.c'))
|
|
|
|
system_ss.add(when: ['CONFIG_SEMIHOSTING'], if_false: files('stubs-system.c'))
|
|
|
|
|
2021-01-09 01:42:48 +03:00
|
|
|
specific_ss.add(when: ['CONFIG_ARM_COMPATIBLE_SEMIHOSTING'],
|
|
|
|
if_true: files('arm-compat-semi.c'))
|