summaryrefslogtreecommitdiffstats
path: root/tools/perf/Build
diff options
context:
space:
mode:
authorSoramichi AKIYAMA2017-01-16 16:22:37 +0100
committerArnaldo Carvalho de Melo2017-01-17 15:36:45 +0100
commitd25ed5d9fad98fd36ffca0bb5c3a0761a11e3f3c (patch)
treecfb25013a0f63d563fe7414d5fc28a0490d30ba2 /tools/perf/Build
parentperf sched timehist: Show total wait times for summary (diff)
downloadkernel-qcow2-linux-d25ed5d9fad98fd36ffca0bb5c3a0761a11e3f3c.tar.gz
kernel-qcow2-linux-d25ed5d9fad98fd36ffca0bb5c3a0761a11e3f3c.tar.xz
kernel-qcow2-linux-d25ed5d9fad98fd36ffca0bb5c3a0761a11e3f3c.zip
perf tools: Move two variables usied in libperf from perf.c
The use_browser and perf_version_string variables are both declared in perf.c but they are also referenced by other functions of libperf.a. Therefore a user linking an own main() with libperf.a must declare those two variables in their files even if the files never use the browser or the version information. This patch fixes this issue by moving use_browser and perf_version_string out of perf.c to some other files. Signed-off-by: Soramichi Akiyama <akiyama@m.soramichi.jp> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/20170117002237.c1aec0ce3b4d675dca018deb@m.soramichi.jp Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Build')
-rw-r--r--tools/perf/Build3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/Build b/tools/perf/Build
index 0b48806f93c2..7039ecb89170 100644
--- a/tools/perf/Build
+++ b/tools/perf/Build
@@ -40,8 +40,7 @@ CFLAGS_builtin-help.o += $(paths)
CFLAGS_builtin-timechart.o += $(paths)
CFLAGS_perf.o += -DPERF_HTML_PATH="BUILD_STR($(htmldir_SQ))" \
-DPERF_EXEC_PATH="BUILD_STR($(perfexecdir_SQ))" \
- -DPREFIX="BUILD_STR($(prefix_SQ))" \
- -include $(OUTPUT)PERF-VERSION-FILE
+ -DPREFIX="BUILD_STR($(prefix_SQ))"
CFLAGS_builtin-trace.o += -DSTRACE_GROUPS_DIR="BUILD_STR($(STRACE_GROUPS_DIR_SQ))"
CFLAGS_builtin-report.o += -DTIPDIR="BUILD_STR($(tipdir_SQ))"
CFLAGS_builtin-report.o += -DDOCDIR="BUILD_STR($(srcdir_SQ)/Documentation)"