diff options
author | David 'Digit' Turner <digit@android.com> | 2011-05-25 18:04:05 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2011-05-25 18:04:05 -0700 |
commit | bd03068d5d287ec638bc834d04f85b4e49404db5 (patch) | |
tree | 9a6953c38c559fa9c7e323c16d05efd182afa261 | |
parent | d11138baea901ca223155f10ef22ceffee0822bc (diff) | |
parent | e3273920a073db0f124f08bfd950e7ad0ae41b0c (diff) | |
download | external_qemu-bd03068d5d287ec638bc834d04f85b4e49404db5.zip external_qemu-bd03068d5d287ec638bc834d04f85b4e49404db5.tar.gz external_qemu-bd03068d5d287ec638bc834d04f85b4e49404db5.tar.bz2 |
Merge "Fix Mac and Windows builds."
-rw-r--r-- | android/config/target-x86/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android/config/target-x86/config.h b/android/config/target-x86/config.h index 862f3d4..242d45d 100644 --- a/android/config/target-x86/config.h +++ b/android/config/target-x86/config.h @@ -1,4 +1,7 @@ /* 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 |