diff options
| author | Philippe Mathieu-Daudé | 2017-06-20 18:30:09 +0200 |
|---|---|---|
| committer | Peter Maydell | 2017-06-20 19:39:15 +0200 |
| commit | 8dfaf23ae1f2273a9730a9b309cc8471269bb524 (patch) | |
| tree | e3ed449ae526b4dedb5d17750238231384179178 /Makefile.target | |
| parent | Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (diff) | |
| download | qemu-8dfaf23ae1f2273a9730a9b309cc8471269bb524.tar.gz qemu-8dfaf23ae1f2273a9730a9b309cc8471269bb524.tar.xz qemu-8dfaf23ae1f2273a9730a9b309cc8471269bb524.zip | |
tcg/tci: fix tcg-interpreter build
fix regression from commit 244f144134:
$ make subdir-arm-softmmu
make[1]: *** No rule to make target 'tci.o', needed by 'qemu-system-arm'. Stop.
Makefile:328: recipe for target 'subdir-arm-softmmu' failed
make: *** [subdir-arm-softmmu] Error 2
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20170620163009.21764-1-f4bug@amsat.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
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 3d49f29457..0066579090 100644 --- a/Makefile.target +++ b/Makefile.target @@ -92,7 +92,7 @@ obj-y += exec.o obj-y += accel/ obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o obj-y += tcg/tcg-common.o tcg/tcg-runtime.o -obj-$(CONFIG_TCG_INTERPRETER) += tci.o +obj-$(CONFIG_TCG_INTERPRETER) += tcg/tci.o obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o obj-y += fpu/softfloat.o obj-y += target/$(TARGET_BASE_ARCH)/ |
