mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
6f8058238a
Re-add the MacOSX/Darwin support: Use the Intel HAX is kernel-based hardware acceleration module (similar to KVM on Linux). Based on the original "target/i386: Add Intel HAX to android emulator" patch from David Chou <david.j.chou@intel.com> from emu-2.2-release branch in the external/qemu-android repository. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> Message-Id: <81b85c3032da902e73e77302af508b4b1a7c0ead.1484045952.git.vpalatin@chromium.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
551 B
Makefile
15 lines
551 B
Makefile
obj-y += translate.o helper.o cpu.o bpt_helper.o
|
|
obj-y += excp_helper.o fpu_helper.o cc_helper.o int_helper.o svm_helper.o
|
|
obj-y += smm_helper.o misc_helper.o mem_helper.o seg_helper.o mpx_helper.o
|
|
obj-y += gdbstub.o
|
|
obj-$(CONFIG_SOFTMMU) += machine.o arch_memory_mapping.o arch_dump.o monitor.o
|
|
obj-$(CONFIG_KVM) += kvm.o hyperv.o
|
|
obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
|
|
# HAX support
|
|
ifdef CONFIG_WIN32
|
|
obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-windows.o
|
|
endif
|
|
ifdef CONFIG_DARWIN
|
|
obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-darwin.o
|
|
endif
|