mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 05a248715c
			
		
	
	
		05a248715c
		
	
	
	
	
		
			
			Avoid polluting the compilation of common-user/ with local include files; making an include file available to common-user/ should be a deliberate decision in order to keep a clear interface that can be used by both bsd-user/ and linux-user/. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			971 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			971 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| if not have_linux_user
 | |
|    subdir_done()
 | |
| endif
 | |
| 
 | |
| linux_user_ss = ss.source_set()
 | |
| 
 | |
| common_user_inc += include_directories('include/host/' / host_arch)
 | |
| common_user_inc += include_directories('include')
 | |
| 
 | |
| linux_user_ss.add(files(
 | |
|   'elfload.c',
 | |
|   'exit.c',
 | |
|   'fd-trans.c',
 | |
|   'linuxload.c',
 | |
|   'main.c',
 | |
|   'mmap.c',
 | |
|   'signal.c',
 | |
|   'strace.c',
 | |
|   'syscall.c',
 | |
|   'thunk.c',
 | |
|   'uaccess.c',
 | |
|   'uname.c',
 | |
| ))
 | |
| linux_user_ss.add(rt)
 | |
| 
 | |
| linux_user_ss.add(when: 'TARGET_HAS_BFLT', if_true: files('flatload.c'))
 | |
| linux_user_ss.add(when: 'TARGET_I386', if_true: files('vm86.c'))
 | |
| linux_user_ss.add(when: 'CONFIG_ARM_COMPATIBLE_SEMIHOSTING', if_true: files('semihost.c'))
 | |
| 
 | |
| 
 | |
| syscall_nr_generators = {}
 | |
| 
 | |
| subdir('alpha')
 | |
| subdir('arm')
 | |
| subdir('hppa')
 | |
| subdir('i386')
 | |
| subdir('m68k')
 | |
| subdir('microblaze')
 | |
| subdir('mips64')
 | |
| subdir('mips')
 | |
| subdir('ppc')
 | |
| subdir('s390x')
 | |
| subdir('sh4')
 | |
| subdir('sparc')
 | |
| subdir('x86_64')
 | |
| subdir('xtensa')
 | |
| 
 | |
| specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss)
 |