aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2012-03-19 14:13:29 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-03-19 14:13:29 -0400
commitc31a94570552dcaa517c4f7a043ffd28835016be (patch)
treedb6b03aaca5ca4a254912ae1a7f3e5e89ee182e4 /tools/perf/Makefile
parentfde0eeaba7fe18dfd2ee6142fb562123e510ef84 (diff)
perf report: Add a simple GTK2-based 'perf report' browser
This patch adds a simple GTK2-based browser to 'perf report' that's based on the TTY-based browser in builtin-report.c. To launch "perf report" using the new GTK interface just type: $ perf report --gtk The interface is somewhat limited in features at the moment: - No callgraph support - No KVM guest profiling support - No color coding for percentages - No sorting from the UI - ..and many, many more! That said, I think this patch a reasonable start to build future features on. Signed-off-by: Pekka Enberg <penberg@kernel.org> Cc: Colin Walters <walters@verbum.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Cc: Ingo Molnar <mingo@kernel.org> Link: http://lkml.kernel.org/r/alpine.LFD.2.02.1202231952410.6689@tux.localdomain [ committer note: Added #pragma to make gtk no strict prototype problem go away as suggested by Colin Walters modulo avoiding push/pop ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r--tools/perf/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index e07fbd838749..cc27148635cd 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -507,6 +507,20 @@ else
507 endif 507 endif
508endif 508endif
509 509
510ifdef NO_GTK2
511 BASIC_CFLAGS += -DNO_GTK2
512else
513 FLAGS_GTK2=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0)
514 ifneq ($(call try-cc,$(SOURCE_GTK2),$(FLAGS_GTK2)),y)
515 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
516 BASIC_CFLAGS += -DNO_GTK2_SUPPORT
517 else
518 BASIC_CFLAGS += $(shell pkg-config --cflags gtk+-2.0)
519 EXTLIBS += $(shell pkg-config --libs gtk+-2.0)
520 LIB_OBJS += $(OUTPUT)util/gtk/browser.o
521 endif
522endif
523
510ifdef NO_LIBPERL 524ifdef NO_LIBPERL
511 BASIC_CFLAGS += -DNO_LIBPERL 525 BASIC_CFLAGS += -DNO_LIBPERL
512else 526else