diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-09-11 18:33:26 -0300 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2017-09-17 06:52:19 -0700 |
commit | 61a3f8f6c047620f4d55ade4f5607a9d019984c6 (patch) | |
tree | 8e3e065d1e4d4ba3647b41c23d5b8208015c75f1 | |
parent | 58410666688690ae2bd1acb2b31c0ba8661b83d1 (diff) |
accel/tcg: move tcg-runtime to accel/tcg/
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20170911213328.9701-4-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | Makefile.target | 2 | ||||
-rw-r--r-- | accel/tcg/Makefile.objs | 1 | ||||
-rw-r--r-- | accel/tcg/tcg-runtime.c (renamed from tcg/tcg-runtime.c) | 0 | ||||
-rw-r--r-- | accel/tcg/tcg-runtime.h (renamed from tcg/tcg-runtime.h) | 0 |
4 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 520305b025..6361f957fb 100644 --- a/Makefile.target +++ b/Makefile.target @@ -94,7 +94,7 @@ all: $(PROGS) stap obj-y += exec.o obj-y += accel/ obj-$(CONFIG_TCG) += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o -obj-$(CONFIG_TCG) += tcg/tcg-common.o tcg/tcg-runtime.o +obj-$(CONFIG_TCG) += tcg/tcg-common.o obj-$(CONFIG_TCG_INTERPRETER) += tcg/tci.o obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o obj-y += fpu/softfloat.o diff --git a/accel/tcg/Makefile.objs b/accel/tcg/Makefile.objs index f2422d0fb3..228cd84fa4 100644 --- a/accel/tcg/Makefile.objs +++ b/accel/tcg/Makefile.objs @@ -1,5 +1,6 @@ obj-$(CONFIG_SOFTMMU) += tcg-all.o obj-$(CONFIG_SOFTMMU) += cputlb.o +obj-y += tcg-runtime.o obj-y += cpu-exec.o cpu-exec-common.o translate-all.o obj-y += translator.o diff --git a/tcg/tcg-runtime.c b/accel/tcg/tcg-runtime.c index 3e23649dd7..3e23649dd7 100644 --- a/tcg/tcg-runtime.c +++ b/accel/tcg/tcg-runtime.c diff --git a/tcg/tcg-runtime.h b/accel/tcg/tcg-runtime.h index c41d38a557..c41d38a557 100644 --- a/tcg/tcg-runtime.h +++ b/accel/tcg/tcg-runtime.h |