aboutsummaryrefslogtreecommitdiffstats
path: root/package/devel
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2018-02-23 16:17:57 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2018-02-25 17:03:42 +0100
commit9bf440fcd9481ee8d20c4b9bccbe6d5cac6bd6e9 (patch)
tree5bb6fa4be5d23834199d1c6f0d2d1cd85dba5f41 /package/devel
parent05dba65569756a2da28afb9fcfc4486105077cd0 (diff)
downloadupstream-9bf440fcd9481ee8d20c4b9bccbe6d5cac6bd6e9.tar.gz
upstream-9bf440fcd9481ee8d20c4b9bccbe6d5cac6bd6e9.tar.bz2
upstream-9bf440fcd9481ee8d20c4b9bccbe6d5cac6bd6e9.zip
perf: restrict libunwind dependency to archs that actually support libunwind
Allow building perf on uncommon targets again. Depending on the kernel version, not all of these archs will actually use libunwind in perf. Still, it seems simpler and less error-prone to use the same list that is defined in the libunwind package. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'package/devel')
-rw-r--r--package/devel/perf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile
index f5c8c7060a..61388580d5 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 +libunwind +libpthread +librt +objdump @!LINUX_3_18 @!IN_SDK @!TARGET_arc770 @KERNEL_PERF_EVENTS
+ DEPENDS:= +libelf1 +libdw +(mips||mipsel||powerpc||i386||x86_64||arm||aarch64):libunwind +libpthread +librt +objdump @!LINUX_3_18 @!IN_SDK @!TARGET_arc770 @KERNEL_PERF_EVENTS
TITLE:=Linux performance monitoring tool
VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
URL:=http://www.kernel.org