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>
stable-6.0
Claudio Fontana 2020-12-12 16:55:10 +01:00 committed by Eduardo Habkost
parent 1fc33bb9f0
commit 7fdef0d4f2
13 changed files with 12 additions and 11 deletions

View File

@ -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
-----

View File

@ -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

View File

@ -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'))

View File

@ -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')