mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00

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>
3 lines
123 B
Text
3 lines
123 B
Text
obj-$(CONFIG_SOFTMMU) += tcg-all.o
|
|
obj-$(CONFIG_SOFTMMU) += cputlb.o
|
|
obj-y += cpu-exec.o cpu-exec-common.o translate-all.o
|