diff options
author | Maxim Gorbachyov <maxim.gorbachyov@gmail.com> | 2018-01-12 20:54:41 +0300 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-02-13 12:37:52 +0100 |
commit | b15d54e659b444ba74655975c3e54e987751244b (patch) | |
tree | db8a240f2bc7827f2fe8be540dc25fe27308c49a | |
parent | 566ff9e6ee695fbc960f281019bf0d248d09975f (diff) | |
download | upstream-b15d54e659b444ba74655975c3e54e987751244b.tar.gz upstream-b15d54e659b444ba74655975c3e54e987751244b.tar.bz2 upstream-b15d54e659b444ba74655975c3e54e987751244b.zip |
perf: use libunwind
Without libunwind perf does not show userspace stack frames.
Tested on mvebu.
Signed-off-by: Maxim Gorbachyov <maxim.gorbachyov@gmail.com>
-rw-r--r-- | package/devel/perf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index 8ff9bfa5e2..9cfa17f5bf 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -26,7 +26,7 @@ include $(INCLUDE_DIR)/package.mk define Package/perf SECTION:=devel CATEGORY:=Development - DEPENDS:= +libelf1 +libdw +libpthread +librt +objdump @!LINUX_3_18 @!IN_SDK + DEPENDS:= +libelf1 +libdw +libunwind +libpthread +librt +objdump @!LINUX_3_18 @!IN_SDK TITLE:=Linux performance monitoring tool VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE) URL:=http://www.kernel.org |