diff mbox

trace: install trace-events file

Message ID 1411486175-3017-1-git-send-email-stefanha@redhat.com
State New
Headers show

Commit Message

Stefan Hajnoczi Sept. 23, 2014, 3:29 p.m. UTC
Install the ./trace-events file into the data directory.  This file
contains the list of trace events that were built into QEMU at
compile-time.

The file is a handy reference for the set of trace events that the QEMU
binary was built with.  It is also needed by the simpletrace.py tool
that parses binary trace data either emitted from QEMU when built with
--enable-trace-backend=simple or by the SystemTap simpletrace script
that QEMU provides.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

Comments

Stefan Hajnoczi Sept. 24, 2014, 1:43 p.m. UTC | #1
On Tue, Sep 23, 2014 at 04:29:35PM +0100, Stefan Hajnoczi wrote:
> Install the ./trace-events file into the data directory.  This file
> contains the list of trace events that were built into QEMU at
> compile-time.
> 
> The file is a handy reference for the set of trace events that the QEMU
> binary was built with.  It is also needed by the simpletrace.py tool
> that parses binary trace data either emitted from QEMU when built with
> --enable-trace-backend=simple or by the SystemTap simpletrace script
> that QEMU provides.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
>  Makefile | 1 +
>  1 file changed, 1 insertion(+)

Applied to my tracing tree:
https://github.com/stefanha/qemu/commits/tracing

Stefan
diff mbox

Patch

diff --git a/Makefile b/Makefile
index b33aaac..f505202 100644
--- a/Makefile
+++ b/Makefile
@@ -418,6 +418,7 @@  endif
 	set -e; for x in $(KEYMAPS); do \
 		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
 	done
+	$(INSTALL_DATA) $(SRC_PATH)/trace-events "$(DESTDIR)$(qemu_datadir)/trace-events"
 	for d in $(TARGET_DIRS); do \
 	$(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
         done