blob: f9a3b81fc015ae6907419ec9624cb8fc091b9397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* x86-specific configuration */
#include "android/config/config.h"
#define TARGET_I386 1
/* For now, KVM is only supported on Linux hosts */
#ifdef CONFIG_LINUX
#define CONFIG_KVM 1
#endif
/*
* HAX is supported in darwin and windows host
*/
#ifdef CONFIG_DARWIN
#define CONFIG_HAX 1
#endif
#ifdef CONFIG_WIN32
#define CONFIG_HAX 1
#endif
|