From: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> We can now safely turn all TCG dependent build off when CONFIG_TCG is off. This allows building ARM binaries with --disable-tcg. Signed-off-by: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> [PMD: Heavily rebased during 18 months] Signed-off-by: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx> --- target/arm/Makefile.objs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/arm/Makefile.objs b/target/arm/Makefile.objs index 993899d731..0178431549 100644 --- a/target/arm/Makefile.objs +++ b/target/arm/Makefile.objs @@ -60,8 +60,6 @@ ifeq ($(CONFIG_TCG),y) obj-$(CONFIG_SEMIHOSTING) += arm-semi.o obj-$(call lnot,$(CONFIG_SEMIHOSTING)) += arm-semi-stub.o -endif # CONFIG_TCG - obj-y += tlb_helper.o debug_helper.o obj-y += translate.o op_helper.o obj-y += crypto_helper.o @@ -80,3 +78,5 @@ obj-$(CONFIG_SOFTMMU) += psci.o obj-$(TARGET_AARCH64) += translate-a64.o helper-a64.o obj-$(TARGET_AARCH64) += translate-sve.o sve_helper.o obj-$(TARGET_AARCH64) += pauth_helper.o + +endif # CONFIG_TCG -- 2.21.1