blob: 935190464c8980bff030e5a514a520a543bfec1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= oprofile
PKG_VERSION:= 757266704753aea10cf3df7c0902ef35fb1377c1
PKG_GIT:= hash
PKG_HASH:= ea65e56db389778f76b9ab8cf66a08fd76b626772be5a3af29e6df87469e404f
PKG_RELEASE:= 1
PKG_DESCR:= system-wide profiles
PKG_SECTION:= app/debug
PKG_DEPENDS:= libpopt libbfd
PKG_KDEPENDS:= oprofile
PKG_BUILDDEP:= popt binutils gcc
PKG_NEEDS:= c++
PKG_URL:= http://oprofile.sourceforge.net/
PKG_SITES:= https://git.code.sf.net/p/oprofile/oprofile.git
PKG_CFLINE_OPROFILE:= select BUSYBOX_EXPR
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call PKG_template,OPROFILE,oprofile,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
AUTOTOOL_STYLE:= autogen
CONFIGURE_ARGS+= --with-binutils-libname=binutils \
--with-binutils=${STAGING_TARGET_DIR}/usr/lib \
--disable-werror \
--disable-optimization
oprofile-install:
$(INSTALL_DIR) $(IDIR_OPROFILE)/usr/{bin,lib/oprofile,share}
$(INSTALL_BIN) $(WRKINST)/usr/bin/ocount \
$(WRKINST)/usr/bin/opannotate \
$(WRKINST)/usr/bin/oparchive \
$(WRKINST)/usr/bin/op-check-perfevents \
$(WRKINST)/usr/bin/operf \
$(WRKINST)/usr/bin/opgprof \
$(WRKINST)/usr/bin/ophelp \
$(WRKINST)/usr/bin/opimport \
$(WRKINST)/usr/bin/opjitconv \
$(WRKINST)/usr/bin/opreport \
$(IDIR_OPROFILE)/usr/bin/
${CP} ${WRKINST}/usr/share/oprofile ${IDIR_OPROFILE}/usr/share/
${CP} ${WRKINST}/usr/lib/oprofile/libopagent.so* \
${IDIR_OPROFILE}/usr/lib/oprofile
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|