mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
290dae4678
translate-common.c will not be available anymore with --disable-tcg, so we cannot leave cpu_interrupt_handler there. Move the TCG-specific handler to accel/tcg/tcg-all.c, and adopt KVM's handler as the default one, since it works just as well for Xen and qtest. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
4 lines
123 B
Makefile
4 lines
123 B
Makefile
obj-$(CONFIG_SOFTMMU) += tcg-all.o
|
|
obj-$(CONFIG_SOFTMMU) += cputlb.o
|
|
obj-y += cpu-exec.o cpu-exec-common.o translate-all.o
|