 cc9a366d3b
			
		
	
	
		cc9a366d3b
		
	
	
	
	
		
			
			iQEcBAABAgAGBQJX7DaFAAoJEJykq7OBq3PIdcYIAKpvDtiEcYy2pTtSOnO52gLQ VskTdh+aqvR7gkdb6SIfvDfL/wbquVNml9NtMhOC8YcT220Xepq28Yj2nDSLPvMi 54Ing4/cGP67cTN5tTGLzUd52KYrf7HJd9npFOehE3b1yhteCJentPjRy47bfWa1 voKx3sISBzmXBDxArW5eZcyEs5sWNriYOapHMXQB0eYkBTS6Q6qgBFYTKzb7CMXd GhtUIflDxxFwzUnYvH5tv+HLfq7O7TPXNjb+gQty8xzmhT+lJhiRr9dpTSRa6atu zRIcGUWbuTjkdZWcjWSTOTfxxZ2CvYlOnHC34H7FbtERBOPwjJ1vh+q1wvB9Mhw= =Q8Nu -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging # gpg: Signature made Wed 28 Sep 2016 22:30:45 BST # gpg: using RSA key 0x9CA4ABB381AB73C8 # gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>" # gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>" # Primary key fingerprint: 8695 A8BF D3F9 7CDA AC35 775A 9CA4 ABB3 81AB 73C8 * remotes/stefanha/tags/tracing-pull-request: trace: Document the execution mode of guest events trace: Add event "guest_cpu_reset" trace: Add event "guest_cpu_enter" trace: Properly initialize dynamic event states in hot-plugged vCPUs trace: move hw/virtio/virtio-balloon.c trace points into correct file trace: move hw/mem/pc-dimm.c trace points into correct file trace: move util/qemu-coroutine*.c trace points into correct file trace: move util/buffer.c trace points into correct file Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			164 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			164 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #######################################################################
 | |
| # Common libraries for tools and emulators
 | |
| stub-obj-y = stubs/ crypto/
 | |
| util-obj-y = util/ qobject/ qapi/
 | |
| util-obj-y += qmp-introspect.o qapi-types.o qapi-visit.o qapi-event.o
 | |
| 
 | |
| #######################################################################
 | |
| # block-obj-y is code used by both qemu system emulation and qemu-img
 | |
| 
 | |
| block-obj-y = async.o thread-pool.o
 | |
| block-obj-y += nbd/
 | |
| block-obj-y += block.o blockjob.o
 | |
| block-obj-y += main-loop.o iohandler.o qemu-timer.o
 | |
| block-obj-$(CONFIG_POSIX) += aio-posix.o
 | |
| block-obj-$(CONFIG_WIN32) += aio-win32.o
 | |
| block-obj-y += block/
 | |
| block-obj-y += qemu-io-cmds.o
 | |
| block-obj-$(CONFIG_REPLICATION) += replication.o
 | |
| 
 | |
| block-obj-m = block/
 | |
| 
 | |
| #######################################################################
 | |
| # crypto-obj-y is code used by both qemu system emulation and qemu-img
 | |
| 
 | |
| crypto-obj-y = crypto/
 | |
| crypto-aes-obj-y = crypto/
 | |
| 
 | |
| #######################################################################
 | |
| # qom-obj-y is code used by both qemu system emulation and qemu-img
 | |
| 
 | |
| qom-obj-y = qom/
 | |
| 
 | |
| #######################################################################
 | |
| # io-obj-y is code used by both qemu system emulation and qemu-img
 | |
| 
 | |
| io-obj-y = io/
 | |
| 
 | |
| ######################################################################
 | |
| # Target independent part of system emulation. The long term path is to
 | |
| # suppress *all* target specific code in case of system emulation, i.e. a
 | |
| # single QEMU executable should support all CPUs and machines.
 | |
| 
 | |
| ifeq ($(CONFIG_SOFTMMU),y)
 | |
| common-obj-y = blockdev.o blockdev-nbd.o block/
 | |
| common-obj-y += iothread.o
 | |
| common-obj-y += net/
 | |
| common-obj-y += qdev-monitor.o device-hotplug.o
 | |
| common-obj-$(CONFIG_WIN32) += os-win32.o
 | |
| common-obj-$(CONFIG_POSIX) += os-posix.o
 | |
| 
 | |
| common-obj-$(CONFIG_LINUX) += fsdev/
 | |
| 
 | |
| common-obj-y += migration/
 | |
| common-obj-y += qemu-char.o #aio.o
 | |
| common-obj-y += page_cache.o
 | |
| 
 | |
| common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
 | |
| 
 | |
| common-obj-y += audio/
 | |
| common-obj-y += hw/
 | |
| common-obj-y += accel.o
 | |
| 
 | |
| common-obj-y += replay/
 | |
| 
 | |
| common-obj-y += ui/
 | |
| common-obj-y += bt-host.o bt-vhci.o
 | |
| bt-host.o-cflags := $(BLUEZ_CFLAGS)
 | |
| 
 | |
| common-obj-y += dma-helpers.o
 | |
| common-obj-y += vl.o
 | |
| vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS)
 | |
| common-obj-y += tpm.o
 | |
| 
 | |
| common-obj-$(CONFIG_SLIRP) += slirp/
 | |
| 
 | |
| common-obj-y += backends/
 | |
| 
 | |
| common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
 | |
| 
 | |
| common-obj-$(CONFIG_FDT) += device_tree.o
 | |
| 
 | |
| ######################################################################
 | |
| # qapi
 | |
| 
 | |
| common-obj-y += qmp-marshal.o
 | |
| common-obj-y += qmp-introspect.o
 | |
| common-obj-y += qmp.o hmp.o
 | |
| endif
 | |
| 
 | |
| #######################################################################
 | |
| # Target-independent parts used in system and user emulation
 | |
| common-obj-y += tcg-runtime.o cpus-common.o
 | |
| common-obj-y += hw/
 | |
| common-obj-y += qom/
 | |
| common-obj-y += disas/
 | |
| 
 | |
| ######################################################################
 | |
| # Resource file for Windows executables
 | |
| version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
 | |
| version-lobj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.lo
 | |
| 
 | |
| ######################################################################
 | |
| # tracing
 | |
| util-obj-y +=  trace/
 | |
| target-obj-y += trace/
 | |
| 
 | |
| ######################################################################
 | |
| # guest agent
 | |
| 
 | |
| # FIXME: a few definitions from qapi-types.o/qapi-visit.o are needed
 | |
| # by libqemuutil.a.  These should be moved to a separate .json schema.
 | |
| qga-obj-y = qga/
 | |
| qga-vss-dll-obj-y = qga/
 | |
| 
 | |
| ######################################################################
 | |
| # contrib
 | |
| ivshmem-client-obj-y = contrib/ivshmem-client/
 | |
| ivshmem-server-obj-y = contrib/ivshmem-server/
 | |
| 
 | |
| 
 | |
| ######################################################################
 | |
| trace-events-y = trace-events
 | |
| trace-events-y += util/trace-events
 | |
| trace-events-y += crypto/trace-events
 | |
| trace-events-y += io/trace-events
 | |
| trace-events-y += migration/trace-events
 | |
| trace-events-y += block/trace-events
 | |
| trace-events-y += hw/block/trace-events
 | |
| trace-events-y += hw/char/trace-events
 | |
| trace-events-y += hw/intc/trace-events
 | |
| trace-events-y += hw/net/trace-events
 | |
| trace-events-y += hw/virtio/trace-events
 | |
| trace-events-y += hw/audio/trace-events
 | |
| trace-events-y += hw/misc/trace-events
 | |
| trace-events-y += hw/usb/trace-events
 | |
| trace-events-y += hw/scsi/trace-events
 | |
| trace-events-y += hw/nvram/trace-events
 | |
| trace-events-y += hw/display/trace-events
 | |
| trace-events-y += hw/input/trace-events
 | |
| trace-events-y += hw/timer/trace-events
 | |
| trace-events-y += hw/dma/trace-events
 | |
| trace-events-y += hw/sparc/trace-events
 | |
| trace-events-y += hw/sd/trace-events
 | |
| trace-events-y += hw/isa/trace-events
 | |
| trace-events-y += hw/mem/trace-events
 | |
| trace-events-y += hw/i386/trace-events
 | |
| trace-events-y += hw/9pfs/trace-events
 | |
| trace-events-y += hw/ppc/trace-events
 | |
| trace-events-y += hw/pci/trace-events
 | |
| trace-events-y += hw/s390x/trace-events
 | |
| trace-events-y += hw/vfio/trace-events
 | |
| trace-events-y += hw/acpi/trace-events
 | |
| trace-events-y += hw/arm/trace-events
 | |
| trace-events-y += hw/alpha/trace-events
 | |
| trace-events-y += ui/trace-events
 | |
| trace-events-y += audio/trace-events
 | |
| trace-events-y += net/trace-events
 | |
| trace-events-y += target-i386/trace-events
 | |
| trace-events-y += target-sparc/trace-events
 | |
| trace-events-y += target-s390x/trace-events
 | |
| trace-events-y += target-ppc/trace-events
 | |
| trace-events-y += qom/trace-events
 | |
| trace-events-y += linux-user/trace-events
 |