mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 79f1a68ab3
			
		
	
	
		79f1a68ab3
		
	
	
	
	
		
			
			Signed-off-by: Claudio Fontana <cfontana@suse.de> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210322132800.7470-19-cfontana@suse.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			767 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			767 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| i386_ss = ss.source_set()
 | |
| i386_ss.add(files(
 | |
|   'cpu.c',
 | |
|   'gdbstub.c',
 | |
|   'helper.c',
 | |
|   'xsave_helper.c',
 | |
|   'cpu-dump.c',
 | |
| ))
 | |
| i386_ss.add(when: 'CONFIG_SEV', if_true: files('host-cpu.c', 'sev.c'), if_false: files('sev-stub.c'))
 | |
| 
 | |
| # x86 cpu type
 | |
| i386_ss.add(when: 'CONFIG_KVM', if_true: files('host-cpu.c'))
 | |
| i386_ss.add(when: 'CONFIG_HVF', if_true: files('host-cpu.c'))
 | |
| 
 | |
| i386_softmmu_ss = ss.source_set()
 | |
| i386_softmmu_ss.add(files(
 | |
|   'arch_dump.c',
 | |
|   'arch_memory_mapping.c',
 | |
|   'machine.c',
 | |
|   'monitor.c',
 | |
|   'cpu-sysemu.c',
 | |
| ))
 | |
| i386_user_ss = ss.source_set()
 | |
| 
 | |
| subdir('kvm')
 | |
| subdir('hax')
 | |
| subdir('whpx')
 | |
| subdir('nvmm')
 | |
| subdir('hvf')
 | |
| subdir('tcg')
 | |
| 
 | |
| target_arch += {'i386': i386_ss}
 | |
| target_softmmu_arch += {'i386': i386_softmmu_ss}
 | |
| target_user_arch += {'i386': i386_user_ss}
 |