aboutsummaryrefslogtreecommitdiff
path: root/accel/stubs/Makefile.objs
diff options
context:
space:
mode:
authorYang Zhong <yang.zhong@intel.com>2017-07-03 18:12:17 +0800
committerPaolo Bonzini <pbonzini@redhat.com>2017-07-04 16:01:16 +0200
commita574cf9b417bb7692e7ec371f2091f0243f62551 (patch)
tree2522d5c032c30f9ed3c8f1a32481967a946f979d /accel/stubs/Makefile.objs
parent24d90a3cfdd30f1f6eb38363aed6c9c084f147ed (diff)
tcg: add the tcg-stub.c file into accel/stubs/
If tcg is disabled, the functions in tcg-stub.c file will be called. This file is target-independent file, do not include any platform related stub functions into this file. Signed-off-by: Yang Zhong <yang.zhong@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/stubs/Makefile.objs')
-rw-r--r--accel/stubs/Makefile.objs1
1 files changed, 1 insertions, 0 deletions
diff --git a/accel/stubs/Makefile.objs b/accel/stubs/Makefile.objs
index bd5794f222..fdfbf7332c 100644
--- a/accel/stubs/Makefile.objs
+++ b/accel/stubs/Makefile.objs
@@ -1 +1,2 @@
obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
+obj-$(call lnot,$(CONFIG_TCG)) += tcg-stub.o