diff options
author | Jiri Olsa <jolsa@kernel.org> | 2014-12-29 07:52:36 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-02-12 09:32:32 -0500 |
commit | 72965b87c5d5d15e33c620901b46c5ca1a3d6b8b (patch) | |
tree | 5e8a7d08ba1222699227a402b3ac340032a97267 /tools/perf/bench | |
parent | 6dd280cdb8a2cf53deacd6240707ec2f22222b20 (diff) |
perf build: Add bench objects building
Move bench objects building under build framework and enable perf-in.o
rule.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Tested-by: Will Deacon <will.deacon@arm.com>
Cc: Alexis Berlemont <alexis.berlemont@gmail.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-b0gxubmn3qjabaq0lune53y3@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/bench')
-rw-r--r-- | tools/perf/bench/Build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/perf/bench/Build b/tools/perf/bench/Build new file mode 100644 index 000000000000..5ce98023d518 --- /dev/null +++ b/tools/perf/bench/Build | |||
@@ -0,0 +1,11 @@ | |||
1 | perf-y += sched-messaging.o | ||
2 | perf-y += sched-pipe.o | ||
3 | perf-y += mem-memcpy.o | ||
4 | perf-y += futex-hash.o | ||
5 | perf-y += futex-wake.o | ||
6 | perf-y += futex-requeue.o | ||
7 | |||
8 | perf-$(CONFIG_X86_64) += mem-memcpy-x86-64-asm.o | ||
9 | perf-$(CONFIG_X86_64) += mem-memset-x86-64-asm.o | ||
10 | |||
11 | perf-$(CONFIG_NUMA) += numa.o | ||