mirror of https://github.com/xemu-project/xemu.git
Compile async only once
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
35da37e141
commit
64dc9c31ae
|
@ -44,7 +44,7 @@ net-obj-y += $(addprefix net/, $(net-nested-y))
|
||||||
common-obj-y = $(block-obj-y)
|
common-obj-y = $(block-obj-y)
|
||||||
common-obj-y += $(net-obj-y)
|
common-obj-y += $(net-obj-y)
|
||||||
common-obj-y += $(qobject-obj-y)
|
common-obj-y += $(qobject-obj-y)
|
||||||
common-obj-y += readline.o console.o
|
common-obj-y += readline.o console.o async.o
|
||||||
|
|
||||||
common-obj-y += tcg-runtime.o host-utils.o
|
common-obj-y += tcg-runtime.o host-utils.o
|
||||||
common-obj-y += irq.o ioport.o input.o
|
common-obj-y += irq.o ioport.o input.o
|
||||||
|
|
|
@ -161,7 +161,7 @@ endif #CONFIG_BSD_USER
|
||||||
# System emulator target
|
# System emulator target
|
||||||
ifdef CONFIG_SOFTMMU
|
ifdef CONFIG_SOFTMMU
|
||||||
|
|
||||||
obj-y = vl.o async.o monitor.o pci.o pci_host.o pcie_host.o machine.o gdbstub.o
|
obj-y = vl.o monitor.o pci.o pci_host.o pcie_host.o machine.o gdbstub.o
|
||||||
obj-y += qemu-error.o qemu-timer.o
|
obj-y += qemu-error.o qemu-timer.o
|
||||||
# virtio has to be here due to weird dependency between PCI and virtio-net.
|
# virtio has to be here due to weird dependency between PCI and virtio-net.
|
||||||
# need to fix this properly
|
# need to fix this properly
|
||||||
|
|
Loading…
Reference in New Issue