1c6ff7205b
In arm-compat-semi.c, we have more advanced treatment of guest file descriptors than we do in other implementations. Split out GuestFD and related functions to a new file so that they can be shared. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
13 lines
307 B
Meson
13 lines
307 B
Meson
specific_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files(
|
|
'guestfd.c',
|
|
))
|
|
|
|
specific_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SOFTMMU'], if_true: files(
|
|
'config.c',
|
|
'console.c',
|
|
'uaccess.c',
|
|
))
|
|
|
|
specific_ss.add(when: ['CONFIG_ARM_COMPATIBLE_SEMIHOSTING'],
|
|
if_true: files('arm-compat-semi.c'))
|