diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-09-11 18:33:25 -0300 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2017-09-17 06:52:19 -0700 |
commit | 58410666688690ae2bd1acb2b31c0ba8661b83d1 (patch) | |
tree | 41135cd9088829d1cad5b1adbe25df5d3338402d /accel/tcg/Makefile.objs | |
parent | da1849c1eba50aa372f87c7945d7b230eb2b2fb2 (diff) | |
download | qemu-58410666688690ae2bd1acb2b31c0ba8661b83d1.zip qemu-58410666688690ae2bd1acb2b31c0ba8661b83d1.tar.gz qemu-58410666688690ae2bd1acb2b31c0ba8661b83d1.tar.bz2 |
accel/tcg: move user-exec to accel/tcg/
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20170911213328.9701-3-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/Makefile.objs')
-rw-r--r-- | accel/tcg/Makefile.objs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/accel/tcg/Makefile.objs b/accel/tcg/Makefile.objs index 22642e6..f2422d0 100644 --- a/accel/tcg/Makefile.objs +++ b/accel/tcg/Makefile.objs @@ -2,3 +2,6 @@ obj-$(CONFIG_SOFTMMU) += tcg-all.o obj-$(CONFIG_SOFTMMU) += cputlb.o obj-y += cpu-exec.o cpu-exec-common.o translate-all.o obj-y += translator.o + +obj-$(CONFIG_USER_ONLY) += user-exec.o +obj-$(call lnot,$(CONFIG_SOFTMMU)) += user-exec-stub.o |