mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 07:28:13 +00:00
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
This commit is contained in:
parent
76fd93726c
commit
330bb60809
1 changed files with 1 additions and 1 deletions
|
@ -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/
|
||||
|
||||
|
|
Loading…
Reference in a new issue