meson.build 323 B

12345678910111213
  1. specific_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files(
  2. 'guestfd.c',
  3. 'syscalls.c',
  4. ))
  5. specific_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SOFTMMU'], if_true: files(
  6. 'config.c',
  7. 'console.c',
  8. 'uaccess.c',
  9. ))
  10. specific_ss.add(when: ['CONFIG_ARM_COMPATIBLE_SEMIHOSTING'],
  11. if_true: files('arm-compat-semi.c'))