5 linux_user_ss = ss.source_set()
7 common_user_inc += include_directories('include/host/' / host_arch)
8 common_user_inc += include_directories('include')
10 linux_user_ss.add(files(
25 linux_user_ss.add(libdw)
27 linux_user_ss.add(when: 'TARGET_HAS_BFLT', if_true: files('flatload.c'))
28 linux_user_ss.add(when: 'TARGET_I386', if_true: files('vm86.c'))
29 linux_user_ss.add(when: 'CONFIG_ARM_COMPATIBLE_SEMIHOSTING', if_true: files('semihost.c'))
31 syscall_nr_generators = {}
33 gen_vdso_exe = executable('gen-vdso', 'gen-vdso.c',
34 native: true, build_by_default: false)
35 gen_vdso = generator(gen_vdso_exe, output: '@BASENAME@.c.inc',
36 arguments: ['-o', '@OUTPUT@', '@EXTRA_ARGS@', '@INPUT@'])
56 specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss)