From 330bb608094e8c0e3bb9ddc3830ba649cf9fcb11 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 7 Jun 2018 11:49:27 -0400 Subject: [PATCH] tcg: remove softfloat from --disable-tcg builds Even though the presence of softfloat does not cause --disable-tcg builds to fail, it is the single largest .o file in them. Remove it, since TCG is the only client. Backports commit 8f971cf0c9265fa5d9f06a195f119237e403c0ce from qemu --- qemu/Makefile.target | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 5990d5d7..2c508e44 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -43,7 +43,7 @@ all: $(PROGS) obj-y = exec.o obj-$(CONFIG_TCG) += tcg/tcg.o tcg/tcg-op.o tcg/tcg-op-vec.o tcg/tcg-op-gvec.o obj-$(CONFIG_TCG) += tcg/tcg-common.o tcg/optimize.o -obj-y += fpu/softfloat.o +obj-$(CONFIG_TCG) += fpu/softfloat.o obj-y += target/$(TARGET_BASE_ARCH)/ obj-y += accel/