mirror of
https://github.com/qemu/qemu.git
synced 2025-08-19 03:11:01 +00:00

Make FPU helpers take a parameter for CPUState instead of relying on global env. Introduce temporary wrappers for FPU load and store ops. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
10 lines
397 B
Makefile
10 lines
397 B
Makefile
obj-y += translate.o helper.o cpu.o interrupt.o
|
|
obj-y += int_helper.o fpu_helper.o cc_helper.o mem_helper.o misc_helper.o
|
|
obj-$(CONFIG_SOFTMMU) += machine.o
|
|
obj-$(CONFIG_KVM) += kvm.o
|
|
|
|
$(obj)/int_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
|
|
$(obj)/cc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
|
|
$(obj)/mem_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
|
|
$(obj)/misc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
|