diff options
author | Yang Zhong <yang.zhong@intel.com> | 2017-07-03 18:12:23 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-07-05 09:12:44 +0200 |
commit | 44eff673411381062b826d048ba9d6630d2b2bdb (patch) | |
tree | 1822e0bfb3aa401aac68dd3af2a4949df79dd0f0 /target | |
parent | 79c664f62d75cfba89a5bbe998622c8d5fdf833b (diff) |
target/i386: add the CONFIG_TCG into Makefiles
Add the CONFIG_TCG for frontend and backend's files in the related
Makefiles.
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/i386/Makefile.objs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target/i386/Makefile.objs b/target/i386/Makefile.objs index ca3bd21cfc..6a26e9d9f0 100644 --- a/target/i386/Makefile.objs +++ b/target/i386/Makefile.objs @@ -1,8 +1,8 @@ -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 += xsave_helper.o -obj-y += gdbstub.o +obj-y += helper.o cpu.o gdbstub.o xsave_helper.o +obj-$(CONFIG_TCG) += translate.o +obj-$(CONFIG_TCG) += bpt_helper.o cc_helper.o excp_helper.o fpu_helper.o +obj-$(CONFIG_TCG) += int_helper.o mem_helper.o misc_helper.o mpx_helper.o +obj-$(CONFIG_TCG) += seg_helper.o smm_helper.o svm_helper.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 |