diff options
author | Will Deacon <will.deacon@arm.com> | 2013-09-26 15:36:36 +0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2013-09-30 19:41:55 +0400 |
commit | 7495f3742dda97612a77d92fa62f85cb7591ab14 (patch) | |
tree | b9208a9e15ed268b6e96394493a09793b7fc1f0f /tools/perf/arch/arm/Makefile | |
parent | 49863894db3ed7bd41541b1c17733273966cea71 (diff) | |
download | linux-7495f3742dda97612a77d92fa62f85cb7591ab14.tar.xz |
ARM: perf: wire up perf_regs and unwind support for ARM
This patch hooks in the perf_regs and libunwind code for ARM.
Cc: Jean Pihet <jean.pihet@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'tools/perf/arch/arm/Makefile')
-rw-r--r-- | tools/perf/arch/arm/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/arch/arm/Makefile b/tools/perf/arch/arm/Makefile index 15130b50dfe3..fe9b61e322a5 100644 --- a/tools/perf/arch/arm/Makefile +++ b/tools/perf/arch/arm/Makefile @@ -2,3 +2,6 @@ ifndef NO_DWARF PERF_HAVE_DWARF_REGS := 1 LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o endif +ifndef NO_LIBUNWIND +LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/unwind.o +endif |