diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-04-09 16:50:52 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-05-01 10:45:04 +0000 |
commit | 0cac1b66c88c4cd3ec1d358091486787837215a3 (patch) | |
tree | 742ebbb3429ca1845a6d528e1acb35d1b2d7c744 /Makefile.target | |
parent | e554861766d9ae84dd5720baa4869f4ed711506f (diff) |
cputlb: move TLB handling to a separate file
Move TLB handling and softmmu code load helpers to cputlb.c,
compile only for softmmu targets.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 9f8cb0c495..15829041c7 100644 --- a/Makefile.target +++ b/Makefile.target @@ -191,7 +191,7 @@ obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o obj-$(CONFIG_KVM) += kvm.o kvm-all.o obj-$(CONFIG_NO_KVM) += kvm-stub.o obj-$(CONFIG_VGA) += vga.o -obj-y += memory.o savevm.o +obj-y += memory.o savevm.o cputlb.o LIBS+=-lz obj-i386-$(CONFIG_KVM) += hyperv.o |