summaryrefslogtreecommitdiffstats
path: root/disas
diff options
context:
space:
mode:
authorStefan Weil2013-01-01 18:43:56 +0100
committerAnthony Liguori2013-01-02 20:33:05 +0100
commit503483336039a8b2b182535f87f4820d259fca82 (patch)
tree827bb9f6b91a9ff66fd9ec2080ca6e7a4cf15fe3 /disas
parentsavevm.c: cleanup system includes (diff)
downloadqemu-503483336039a8b2b182535f87f4820d259fca82.tar.gz
qemu-503483336039a8b2b182535f87f4820d259fca82.tar.xz
qemu-503483336039a8b2b182535f87f4820d259fca82.zip
tci: Fix broken builds with TCG interpreter
TCI no longer compiled after commit 76cad71136b7eb371cf2a2a4e1621cfe8d9c769a. The TCI disassembler depends on data structures which are different for each QEMU target, so it cannot be compiled as a universal-obj today. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'disas')
-rw-r--r--disas/Makefile.objs4
1 files changed, 3 insertions, 1 deletions
diff --git a/disas/Makefile.objs b/disas/Makefile.objs
index 9134429845..3f5c5b9a21 100644
--- a/disas/Makefile.objs
+++ b/disas/Makefile.objs
@@ -13,4 +13,6 @@ universal-obj-$(CONFIG_SH4_DIS) += sh4.o
universal-obj-$(CONFIG_SPARC_DIS) += sparc.o
universal-obj-$(CONFIG_LM32_DIS) += lm32.o
-universal-obj-$(CONFIG_TCI_DIS) += tci.o
+# TODO: As long as the TCG interpreter and its generated code depend
+# on the QEMU target, we cannot compile the disassembler here.
+#universal-obj-$(CONFIG_TCI_DIS) += tci.o