mirror of https://gitee.com/openkylin/qemu.git
i386: move hax accel files into hax/
Signed-off-by: Claudio Fontana <cfontana@suse.de> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20201212155530.23098-4-cfontana@suse.de> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
1fc33bb9f0
commit
7fdef0d4f2
|
@ -492,7 +492,7 @@ W: https://github.com/intel/haxm/issues
|
|||
S: Maintained
|
||||
F: accel/stubs/hax-stub.c
|
||||
F: include/sysemu/hax.h
|
||||
F: target/i386/hax-*
|
||||
F: target/i386/hax/
|
||||
|
||||
Hosts
|
||||
-----
|
||||
|
|
|
@ -84,13 +84,13 @@ void hax_memory_init(void);
|
|||
|
||||
|
||||
#ifdef CONFIG_POSIX
|
||||
#include "target/i386/hax-posix.h"
|
||||
#include "hax-posix.h"
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_WIN32
|
||||
#include "target/i386/hax-windows.h"
|
||||
#include "hax-windows.h"
|
||||
#endif
|
||||
|
||||
#include "target/i386/hax-interface.h"
|
||||
#include "hax-interface.h"
|
||||
|
||||
#endif
|
|
@ -0,0 +1,7 @@
|
|||
i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files(
|
||||
'hax-all.c',
|
||||
'hax-mem.c',
|
||||
'hax-cpus.c',
|
||||
))
|
||||
i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c'))
|
||||
i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c'))
|
|
@ -27,15 +27,9 @@ i386_softmmu_ss.add(files(
|
|||
'machine.c',
|
||||
'monitor.c',
|
||||
))
|
||||
i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files(
|
||||
'hax-all.c',
|
||||
'hax-mem.c',
|
||||
'hax-cpus.c',
|
||||
))
|
||||
i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c'))
|
||||
i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c'))
|
||||
|
||||
subdir('kvm')
|
||||
subdir('hax')
|
||||
subdir('whpx')
|
||||
subdir('hvf')
|
||||
|
||||
|
|
Loading…
Reference in New Issue